Skip to content

Instantly share code, notes, and snippets.

@Tookmund
Created September 6, 2017 03:52
Show Gist options
  • Save Tookmund/44693f5c05ce8311483312693dc628f7 to your computer and use it in GitHub Desktop.
Save Tookmund/44693f5c05ce8311483312693dc628f7 to your computer and use it in GitHub Desktop.
live build for Space Nerds In Space
#!/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
#!/bin/sh
apt install snis*.deb && rm -f snis*.deb
@smcameron
Copy link

Hey, this looks interesting. Could you comment about how it's meant to be used?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment