template_setup/template_setup.sh
deathbybandaid b73c874dba test
2022-03-08 08:57:26 -05:00

17 lines
323 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
echo ""
for scriptfile in "$SCRIPTDIR"/[0-9]*.sh
do
/bin/bash $scriptfile
echo ""
done
echo "template_setup completed"