diff options
author | liushuyu <liushuyu011@gmail.com> | 2022-07-05 05:18:17 +0200 |
---|---|---|
committer | liushuyu <liushuyu011@gmail.com> | 2022-07-05 05:21:56 +0200 |
commit | 312e5eda66e4e610300bfa178f1c1ce70293bc12 (patch) | |
tree | de8f437907743324a95f3a52712d2e48404f35bb /.ci/scripts/common | |
parent | CI: workaround appimage generation if FUSE is not available (diff) | |
download | yuzu-312e5eda66e4e610300bfa178f1c1ce70293bc12.tar yuzu-312e5eda66e4e610300bfa178f1c1ce70293bc12.tar.gz yuzu-312e5eda66e4e610300bfa178f1c1ce70293bc12.tar.bz2 yuzu-312e5eda66e4e610300bfa178f1c1ce70293bc12.tar.lz yuzu-312e5eda66e4e610300bfa178f1c1ce70293bc12.tar.xz yuzu-312e5eda66e4e610300bfa178f1c1ce70293bc12.tar.zst yuzu-312e5eda66e4e610300bfa178f1c1ce70293bc12.zip |
Diffstat (limited to '.ci/scripts/common')
-rw-r--r-- | .ci/scripts/common/post-upload.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.ci/scripts/common/post-upload.sh b/.ci/scripts/common/post-upload.sh index 91ef750fe..a4e3070fd 100644 --- a/.ci/scripts/common/post-upload.sh +++ b/.ci/scripts/common/post-upload.sh @@ -4,7 +4,7 @@ cp license.txt "$DIR_NAME" cp README.md "$DIR_NAME" -if [[ "x${NO_SOURCE_PACK}" == "x" ]]; then +if [[ -z "${NO_SOURCE_PACK}" ]]; then tar -cJvf "${REV_NAME}-source.tar.xz" src externals CMakeLists.txt README.md license.txt cp -v "${REV_NAME}-source.tar.xz" "$DIR_NAME" fi |