mirror of
				https://github.com/rancher/types.git
				synced 2025-11-04 03:22:05 +00:00 
			
		
		
		
	
		
			
	
	
		
			19 lines
		
	
	
		
			337 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
		
		
			
		
	
	
			19 lines
		
	
	
		
			337 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| 
								 | 
							
								#!/bin/bash
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								if [ -n "$(git status --porcelain --untracked-files=no)" ]; then
							 | 
						||
| 
								 | 
							
								    DIRTY="-dirty"
							 | 
						||
| 
								 | 
							
								fi
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								COMMIT=$(git rev-parse --short HEAD)
							 | 
						||
| 
								 | 
							
								GIT_TAG=$(git tag -l --contains HEAD | head -n 1)
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								if [[ -z "$DIRTY" && -n "$GIT_TAG" ]]; then
							 | 
						||
| 
								 | 
							
								    VERSION=$GIT_TAG
							 | 
						||
| 
								 | 
							
								else
							 | 
						||
| 
								 | 
							
								    VERSION="${COMMIT}${DIRTY}"
							 | 
						||
| 
								 | 
							
								fi
							 | 
						||
| 
								 | 
							
								
							 | 
						||
| 
								 | 
							
								if [ -z "$ARCH" ]; then
							 | 
						||
| 
								 | 
							
								    ARCH=amd64
							 | 
						||
| 
								 | 
							
								fi
							 |