diff --git a/deploy.sh b/deploy.sh new file mode 100644 index 0000000..abfda5f --- /dev/null +++ b/deploy.sh @@ -0,0 +1,11 @@ +#!/bin/bash + +REPO=https://git.xoservice.nl/marcel/deploy + +if [[ -z $1 ]] +then + echo "no package selected, exitting" + exit 1 +else + bash -c "$(curl -fsSL $REPO/raw/master/$1/install.sh)" +fi