Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/bash
- cd $(dirname $0)/source
- git fetch
- read -p "Rebuild? [y/N] " -n1 rebuild
- echo
- if [[ "$rebuild" == "y" || "$rebuild" == "Y" ]]; then
- python dpkgfiles/make_deb_package.py
- cd ..
- sudo dpkg -i $(ls *.deb)
- rm -rf armory*
- sudo cp launchers/armory* /usr/share/applications
- fi
Advertisement
Add Comment
Please, Sign In to add comment