summaryrefslogtreecommitdiffstats
path: root/.ci/scripts/linux/upload.sh
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2019-11-07 03:36:50 +0100
committerGitHub <noreply@github.com>2019-11-07 03:36:50 +0100
commitf1e4f3fc0c4caa29bcfcca75e73f2f360d2a8e42 (patch)
tree7c184e88467e0851f23f5b88b67b3873fe03f179 /.ci/scripts/linux/upload.sh
parentMerge pull request #3057 from ReinUsesLisp/buffer-sub-data (diff)
downloadyuzu-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/upload.sh')
-rw-r--r--.ci/scripts/linux/upload.sh12
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