mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-15 20:49:56 +00:00
ffcdedced3
This URL is also subject to change, moving to Travis settings.
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}"
|