mirror of
				https://github.com/yggdrasil-network/yggdrasil-go.git
				synced 2025-11-04 11:15:07 +03:00 
			
		
		
		
	Replace tests with ifs
This commit is contained in:
		
							parent
							
								
									57894541b7
								
							
						
					
					
						commit
						7eaee172cf
					
				
					 1 changed files with 21 additions and 7 deletions
				
			
		| 
						 | 
					@ -2,11 +2,20 @@
 | 
				
			||||||
 | 
					
 | 
				
			||||||
# Get the last tag
 | 
					# Get the last tag
 | 
				
			||||||
TAG=$(git describe --abbrev=0 --tags --match="v[0-9]*\.[0-9]*\.[0-9]*" 2>/dev/null)
 | 
					TAG=$(git describe --abbrev=0 --tags --match="v[0-9]*\.[0-9]*\.[0-9]*" 2>/dev/null)
 | 
				
			||||||
(test $? != 0 || test -z "$TAG") && (echo "unknown"; exit 1)
 | 
					
 | 
				
			||||||
 | 
					# Did getting the tag succeed?
 | 
				
			||||||
 | 
					if [ $? != 0 ] || [ -z "$TAG" ]; then
 | 
				
			||||||
 | 
					  printf "unknown"
 | 
				
			||||||
 | 
					  exit 1
 | 
				
			||||||
 | 
					fi
 | 
				
			||||||
 | 
					
 | 
				
			||||||
# Get the current branch
 | 
					# Get the current branch
 | 
				
			||||||
BRANCH=$(git symbolic-ref -q HEAD --short 2>/dev/null)
 | 
					BRANCH=$(git symbolic-ref -q HEAD --short 2>/dev/null)
 | 
				
			||||||
(test $? != 0 || test -z "$BRANCH") && BRANCH="master"
 | 
					
 | 
				
			||||||
 | 
					# Did getting the branch succeed?
 | 
				
			||||||
 | 
					if [ $? != 0 ] || [ -z "$BRANCH" ]; then
 | 
				
			||||||
 | 
					  BRANCH="master"
 | 
				
			||||||
 | 
					fi
 | 
				
			||||||
 | 
					
 | 
				
			||||||
# Split out into major, minor and patch numbers
 | 
					# Split out into major, minor and patch numbers
 | 
				
			||||||
MAJOR=$(echo $TAG | cut -c 2- | cut -d "." -f 1)
 | 
					MAJOR=$(echo $TAG | cut -c 2- | cut -d "." -f 1)
 | 
				
			||||||
| 
						 | 
					@ -22,10 +31,15 @@ fi
 | 
				
			||||||
 | 
					
 | 
				
			||||||
# Add the build tag on non-master branches
 | 
					# Add the build tag on non-master branches
 | 
				
			||||||
if [ "$BRANCH" != "master" ]; then
 | 
					if [ "$BRANCH" != "master" ]; then
 | 
				
			||||||
  BUILD=$(git rev-list $TAG..HEAD --count)
 | 
					  BUILD=$(git rev-list $TAG..HEAD --count 2>/dev/null)
 | 
				
			||||||
  if [ $? = 0 ] && [ -n "$BUILD" ]; then
 | 
					
 | 
				
			||||||
    if [ $((BUILD)) -gt 0 ]; then
 | 
					  # Did getting the count of commits since the tag succeed?
 | 
				
			||||||
        printf -- "-%04d" "$((BUILD))"
 | 
					  if [ $? != 0 ] && [ -z "$BUILD" ]; then
 | 
				
			||||||
    fi
 | 
					    exit 1
 | 
				
			||||||
 | 
					  fi
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					  # Is the build greater than zero?
 | 
				
			||||||
 | 
					  if [ $((BUILD)) -gt 0 ]; then
 | 
				
			||||||
 | 
					      printf -- "-%04d" "$((BUILD))"
 | 
				
			||||||
  fi
 | 
					  fi
 | 
				
			||||||
fi
 | 
					fi
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue