1
0
mirror of https://github.com/citra-emu/citra.git synced 2024-12-29 06:50:07 +00:00
citra/.travis/linux-mingw/upload.sh

14 lines
276 B
Bash
Raw Normal View History

#!/bin/bash -ex
. .travis/common/pre-upload.sh
REV_NAME="citra-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