mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-01 04:47:53 +00:00
a8f54f96fc
This commit also fixed a broken cmake dependency with unicorn
13 lines
275 B
Bash
Executable file
13 lines
275 B
Bash
Executable file
#!/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
|