10 lines
		
	
	
		
			170 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			170 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
set -e
 | 
						|
 | 
						|
file=./lyng/build/bin/linuxX64/releaseExecutable/lyng.kexe
 | 
						|
 | 
						|
./gradlew :lyng:linkReleaseExecutableLinuxX64
 | 
						|
strip $file
 | 
						|
upx   $file
 | 
						|
cp $file ~/bin/lyng |