template_setup/template_setup.sh
deathbybandaid 0a0e55f43b test
2022-03-08 08:57:15 -05:00

16 lines
315 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
echo ""
done
echo "template_setup completed"