mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-01 03:21:41 +00:00
ffcdedced3
This URL is also subject to change, moving to Travis settings.
10 lines
259 B
Bash
Executable File
10 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}"
|