template_setup/template_setup.sh
deathbybandaid 838ec62d9a test
2022-03-08 08:52:37 -05:00

13 lines
272 B
Bash

#!/bin/bash
echo "Setting up template environment"
## Script Location
SCRIPTDIR=$(dirname $0)
# SCRIPTREPO="https://git.deathbybandaid.net/deathbybandaid/template_setup.git"
git -C $SCRIPTDIR pull
for scriptfile in "$SCRIPTDIR"/[0-9]*.sh
do
/bin/bash $scriptfile
done