From 87aaa7131e6f61ce24ed501b8e19374e7c301554 Mon Sep 17 00:00:00 2001 From: Baptiste Augrain Date: Mon, 26 Sep 2022 11:42:26 +0200 Subject: [PATCH] fix(linux): appimage --- .gitignore | 2 +- build/linux/appimage/build.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index c5b9201..b77974e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,4 @@ -vscode +vscode* VS*/* VSCode* VSCodium* diff --git a/build/linux/appimage/build.sh b/build/linux/appimage/build.sh index 6347a6f..fae196a 100755 --- a/build/linux/appimage/build.sh +++ b/build/linux/appimage/build.sh @@ -7,7 +7,7 @@ CALLER_DIR=$( pwd ) cd "$( dirname "${BASH_SOURCE[0]}" )" if [[ "${VSCODE_ARCH}" == "x64" ]]; then - GITHUB_RESPONSE=$( curl -s "https://api.github.com/repos/AppImage/pkg2appimage/releases/latest" ) + GITHUB_RESPONSE=$( curl --silent --location "https://api.github.com/repos/AppImage/pkg2appimage/releases/latest" ) APPIMAGE_URL=$( echo "${GITHUB_RESPONSE}" | jq --raw-output '.assets | map(select( .name | test("x86_64.AppImage(?!.zsync)"))) | map(.browser_download_url)[0]' ) if [[ -z "${APPIMAGE_URL}" ]]; then