From 60335dcd6feac55d1092baf056a22982090171b5 Mon Sep 17 00:00:00 2001 From: Brian Date: Tue, 5 Nov 2019 08:25:16 +0800 Subject: [PATCH] Update create_appimage.sh Addresses issue #253 Modified pkg2appimage removes PYTHONPATH & PYTHONHOME exportations. --- create_appimage.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/create_appimage.sh b/create_appimage.sh index 5cf187ff08c..b84391d846f 100755 --- a/create_appimage.sh +++ b/create_appimage.sh @@ -3,8 +3,8 @@ if [[ "$BUILDARCH" == "x64" ]]; then # install a dep needed for this process sudo apt-get install desktop-file-utils - # download pkg2appimage from github - curl -LO "https://github.com/AppImage/pkg2appimage/raw/master/pkg2appimage" + # download modified pkg2appimage from gist + curl -LO "https://gist.githubusercontent.com/tyu1996/39b8a7a29c2cdeef882daaa1702ec971/raw/2e788010deafb2f1214439ee0bc8e46685480e45/pkg2appimage" bash -e pkg2appimage ../VSCodium-AppImage-Recipe.yml fi