Skip to content

Instantly share code, notes, and snippets.

@ervinb
Forked from predrag-rakic/install_riffed.sh
Last active February 5, 2016 15:10
Show Gist options
  • Save ervinb/c874f7ec2a174e81485c to your computer and use it in GitHub Desktop.
Save ervinb/c874f7ec2a174e81485c to your computer and use it in GitHub Desktop.
DEB="thrift_0.9.3-1_amd64.deb"
URL="https://s3-us-west-2.amazonaws.com/container-libraries/$DEB"
if ! [ -e $SEMAPHORE_CACHE_DIR/$DEB ]; then (cd $SEMAPHORE_CACHE_DIR; wget $URL); fi
sudo dpkg -i $SEMAPHORE_CACHE_DIR/$DEB
echo "$(thrift --version) installed"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment