From 53b071366b3027c991a09e4b8bc22a69ebaa61dc Mon Sep 17 00:00:00 2001 From: Baptiste Augrain Date: Mon, 26 Jul 2021 01:15:55 +0200 Subject: [PATCH] Fix AppImage's dependency (#775) * move dependency installation into workflow * dependency install not needed --- create_appimage.sh | 3 --- docs/build.md | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/create_appimage.sh b/create_appimage.sh index 84dc9e3..3c7c210 100755 --- a/create_appimage.sh +++ b/create_appimage.sh @@ -3,9 +3,6 @@ cd .. if [[ "$VSCODE_ARCH" == "x64" ]]; then - # install a dep needed for this process - sudo apt-get install desktop-file-utils - wget -c https://github.com/$(wget -q https://github.com/AppImage/pkg2appimage/releases -O - | grep "pkg2appimage-.*-x86_64.AppImage" | head -n 1 | cut -d '"' -f 2) chmod +x ./pkg2appimage-*.AppImage diff --git a/docs/build.md b/docs/build.md index 5f75fcd..5d6589d 100644 --- a/docs/build.md +++ b/docs/build.md @@ -53,7 +53,7 @@ docker run -ti --volume=:/root/vscodium --name=vscodium-b When inside the container, you can use the following commands to build: ``` curl -fsSL https://deb.nodesource.com/setup_14.x | sudo -E bash - -sudo apt-get install -y nodejs +sudo apt-get install -y nodejs desktop-file-utils npm install -g yarn