Created
September 6, 2017 03:52
-
-
Save Tookmund/44693f5c05ce8311483312693dc628f7 to your computer and use it in GitHub Desktop.
live build for Space Nerds In Space
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
apt install --yes git devscripts | |
URL="https://github.com/smcameron/space-nerds-in-space" | |
CACHE="../cache/snis/" | |
TARGET=$PWD | |
mkdir -p $CACHE | |
git clone $URL $CACHE | |
cd $CACHE | |
debuild | |
cp ../snis*.deb $TARGET |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
apt install snis*.deb && rm -f snis*.deb |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hey, this looks interesting. Could you comment about how it's meant to be used?