pentest-distro-builder/debs/get-debs.sh
Kaj Forney 406fa62661 Fix reruns with deb downloads.
Former-commit-id: dfc5db7c5eb915a67b4a4f7a83c94d3b6d1b4ffc
Former-commit-id: efaca62f5a9432d903f4bf4569bd8f1b8e153482
2019-08-27 18:21:13 -06:00

15 lines
501 B
Bash
Executable file

#!/bin/bash
#Discord
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.37.1/codium_1.37.1-1565952268_amd64.deb"
#Slack
wget -O ../build/slack.deb "https://downloads.slack-edge.com/linux_releases/slack-desktop-4.0.2-amd64.deb"
exit 0