my-env/start.sh

7 lines
138 B
Bash
Raw Normal View History

#!/bin/bash
set -e
2022-01-09 09:14:15 +00:00
for script in "$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"/install/*.sh
do
. "$script"
done