diff options
author | bunnei <bunneidev@gmail.com> | 2019-11-07 03:36:50 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-11-07 03:36:50 +0100 |
commit | f1e4f3fc0c4caa29bcfcca75e73f2f360d2a8e42 (patch) | |
tree | 7c184e88467e0851f23f5b88b67b3873fe03f179 /.ci/scripts/linux | |
parent | Merge pull request #3057 from ReinUsesLisp/buffer-sub-data (diff) | |
download | yuzu-f1e4f3fc0c4caa29bcfcca75e73f2f360d2a8e42.tar yuzu-f1e4f3fc0c4caa29bcfcca75e73f2f360d2a8e42.tar.gz yuzu-f1e4f3fc0c4caa29bcfcca75e73f2f360d2a8e42.tar.bz2 yuzu-f1e4f3fc0c4caa29bcfcca75e73f2f360d2a8e42.tar.lz yuzu-f1e4f3fc0c4caa29bcfcca75e73f2f360d2a8e42.tar.xz yuzu-f1e4f3fc0c4caa29bcfcca75e73f2f360d2a8e42.tar.zst yuzu-f1e4f3fc0c4caa29bcfcca75e73f2f360d2a8e42.zip |
Diffstat (limited to '.ci/scripts/linux')
-rw-r--r-- | .ci/scripts/linux/upload.sh | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/.ci/scripts/linux/upload.sh b/.ci/scripts/linux/upload.sh index ecd77e267..0d131d1dd 100644 --- a/.ci/scripts/linux/upload.sh +++ b/.ci/scripts/linux/upload.sh @@ -6,15 +6,9 @@ REV_NAME="yuzu-linux-${GITDATE}-${GITREV}" ARCHIVE_NAME="${REV_NAME}.tar.xz" COMPRESSION_FLAGS="-cJvf" -if [ "${RELEASE_NAME}" = "mainline" ]; then - DIR_NAME="${REV_NAME}_${RELEASE_NAME}" -else - DIR_NAME="${REV_NAME}" -fi +mkdir "$REV_NAME" -mkdir "$DIR_NAME" - -cp build/bin/yuzu-cmd "$DIR_NAME" -cp build/bin/yuzu "$DIR_NAME" +cp build/bin/yuzu-cmd "$REV_NAME" +cp build/bin/yuzu "$REV_NAME" . .ci/scripts/common/post-upload.sh |