Skip to content

Instantly share code, notes, and snippets.

@dweomer
Last active August 29, 2015 14:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dweomer/e98b4b36e3ff87ac41b2 to your computer and use it in GitHub Desktop.
Save dweomer/e98b4b36e3ff87ac41b2 to your computer and use it in GitHub Desktop.
#!/bin/sh -x
gpg --keyserver pool.sks-keyservers.net --recv-keys B42F6819007F00F88E364FD4036A9C25BF357DD4 \
&& wget -O /usr/local/bin/gosu "https://github.com/tianon/gosu/releases/download/${GOSU_VERSION}/gosu-$(dpkg --print-architecture)" \
&& wget -O /usr/local/bin/gosu.asc "https://github.com/tianon/gosu/releases/download/${GOSU_VERSION}/gosu-$(dpkg --print-architecture).asc" \
&& gpg --verify /usr/local/bin/gosu.asc \
&& rm /usr/local/bin/gosu.asc \
&& chmod +xs /usr/local/bin/gosu
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment