13 lines
272 B
Bash
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
|