mirror of
https://github.com/starr-dusT/yuzu-mainline
synced 2024-03-05 21:12:25 -08:00
14 lines
275 B
Bash
14 lines
275 B
Bash
|
#!/bin/bash -ex
|
||
|
|
||
|
. .travis/common/pre-upload.sh
|
||
|
|
||
|
REV_NAME="yuzu-windows-mingw-${GITDATE}-${GITREV}"
|
||
|
ARCHIVE_NAME="${REV_NAME}.tar.gz"
|
||
|
COMPRESSION_FLAGS="-czvf"
|
||
|
|
||
|
mkdir "$REV_NAME"
|
||
|
# get around the permission issues
|
||
|
cp -r package/* "$REV_NAME"
|
||
|
|
||
|
. .travis/common/post-upload.sh
|