You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
238 B
11 lines
238 B
#! /bin/sh
|
|
|
|
# exit if a command fails
|
|
set -eo pipefail
|
|
|
|
# download
|
|
curl -sL https://github.com/ptrofimov/beanstalk_console/archive/master.tar.gz | tar xvz -C /tmp
|
|
mv /tmp/beanstalk_console-master /source
|
|
|
|
# remove tmp files
|
|
rm -rf /tmp/*
|