mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-10-31 23:26:41 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
	
		
			259 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
	
		
			259 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable file
		
	
	
	
	
| #!/bin/sh
 | |
| 
 | |
| cd build
 | |
| 
 | |
| DATE=`date +'%d%m%Y'`
 | |
| SHORT_COMMIT=`git rev-parse --short ${TRAVIS_COMMIT}`
 | |
| TARGET_FILENAME="OpenMW-${DATE}-${SHORT_COMMIT}.dmg"
 | |
| 
 | |
| curl --ssl --ftp-create-dirs -T *.dmg -u $OSX_FTP_USER:$OSX_FTP_PASSWORD "${OSX_FTP_URL}${TARGET_FILENAME}"
 |