From 8a89838543eb0ec03a4ea9368a876099388f26a2 Mon Sep 17 00:00:00 2001 From: Kaj Forney Date: Thu, 30 Jan 2020 16:04:49 -0700 Subject: [PATCH] Update .deb packages; move VS Code download to later in build. --- config/pentest-distro-builder.chroot | 5 +++++ debs/get-debs.sh | 9 +++------ 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/config/pentest-distro-builder.chroot b/config/pentest-distro-builder.chroot index 0983a65a..f2e81a01 100644 --- a/config/pentest-distro-builder.chroot +++ b/config/pentest-distro-builder.chroot @@ -31,6 +31,11 @@ tar xvf ftkimager.3.1.1_ubuntu64.tar.gz mv ftkimager /usr/bin/ rm ftkimager.3.1.1_ubuntu64.tar.gz +#Install VS Code +wget -qO - https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo/raw/master/pub.gpg | sudo apt-key add - +echo 'deb https://gitlab.com/paulcarroty/vscodium-deb-rpm-repo/raw/repos/debs/ vscodium main' | sudo tee --append /etc/apt/sources.list.d/vscodium.list +sudo apt update && sudo apt install codium -y + #Install VS Code extensions #codium --install-extension dbaeumer.vscode-eslint --user-data-dir=~/.vscode-oss #codium --install-extension ecmel.vscode-html-css --user-data-dir=~/.vscode-oss diff --git a/debs/get-debs.sh b/debs/get-debs.sh index 22cde2de..777ca510 100755 --- a/debs/get-debs.sh +++ b/debs/get-debs.sh @@ -4,13 +4,10 @@ wget -O ../build/discord.deb "https://discordapp.com/api/download?platform=linux&format=deb" #Resilio Sync -wget -O ../build/resilio.deb "https://download-cdn.resilio.com/2.6.3/Debian/resilio-sync_2.6.3-1_amd64.deb" - -#VS Code (OSS) -wget -O ../build/code.deb "https://github.com/VSCodium/vscodium/releases/download/1.39.0/codium_1.39.0-1570649825_amd64.deb" +wget -O ../build/resilio.deb "https://download-cdn.resilio.com/2.6.4.1344/Debian/resilio-sync_2.6.4.1344-1_amd64.deb" #Slack -wget -O ../build/slack.deb "https://downloads.slack-edge.com/linux_releases/slack-desktop-4.0.2-amd64.deb" +wget -O ../build/slack.deb "https://downloads.slack-edge.com/linux_releases/slack-desktop-4.2.0-amd64.deb" dpkg-name ../build/*.deb -exit 0 \ No newline at end of file +exit 0