mirror of https://github.com/yuzu-mirror/yuzu
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
275 B
Bash
14 lines
275 B
Bash
6 years ago
|
#!/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
|