diff options
Diffstat (limited to 'eventline/ev-scripts-deploy.sh')
-rw-r--r-- | eventline/ev-scripts-deploy.sh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/eventline/ev-scripts-deploy.sh b/eventline/ev-scripts-deploy.sh new file mode 100644 index 0000000..c6b6f0d --- /dev/null +++ b/eventline/ev-scripts-deploy.sh @@ -0,0 +1,15 @@ +#!/usr/bin/env bash +set -euo pipefail + +WORKDIR="/tmp/ev-scripts-deploy" + +cleanup() { + cd + rm -rf ${WORKDIR} +} + +trap cleanup EXIT + +git clone -q --depth 1 https://git.adyxax.org/adyxax/ev-scripts.git ${WORKDIR} +cd ${WORKDIR} +make run |