21 lines
		
	
	
		
			418 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
			
		
		
	
	
			21 lines
		
	
	
		
			418 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
| #!/usr/bin/env bash
 | |
| 
 | |
| # Run in ACTIVATE_LICENSE_PATH directory
 | |
| echo "Changing to \"$ACTIVATE_LICENSE_PATH\" directory."
 | |
| pushd "$ACTIVATE_LICENSE_PATH"
 | |
| 
 | |
| if [[ -n "$UNITY_SERIAL" ]]; then
 | |
|   #
 | |
|   # PROFESSIONAL (SERIAL) LICENSE MODE
 | |
|   #
 | |
|   # This will return the license that is currently in use.
 | |
|   #
 | |
|   unity-editor \
 | |
|     -logFile /dev/stdout \
 | |
|     -quit \
 | |
|     -returnlicense
 | |
| fi
 | |
| 
 | |
| # Return to previous working directory
 | |
| popd
 |