12 lines
209 B
Bash
12 lines
209 B
Bash
#!/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
|