Skip to content

Instantly share code, notes, and snippets.

View amcamillo's full-sized avatar
:dependabot:
Working on upgrade

Camillo amcamillo

:dependabot:
Working on upgrade
View GitHub Profile
@amcamillo
amcamillo / postman-deb.sh
Created December 15, 2019 20:31 — forked from SanderTheDragon/postman-deb.sh
A shellscript to create a Postman .deb file, for simple installation on Debian-based Linux distro's. Also creates a .desktop file.
#!/bin/sh
ls Postman*.tar.gz > /dev/null 2>&1
if [ $? -eq 0 ]; then
echo "Removing old Postman tarballs"
rm -f $(ls Postman*.tar.gz)
fi
curlExists=$(command -v curl)