Files
interview/build_time_scripts.sh

13 lines
172 B
Bash
Raw Normal View History

2025-05-16 22:11:10 +03:00
# exit on errors
set -e
2025-05-16 22:25:12 +03:00
2025-05-16 22:11:10 +03:00
if [ "$(ls $1)" ]; then
for script in $1/*
do
echo "executing $script"
2025-05-17 00:25:39 +03:00
bash $script
2025-05-16 22:11:10 +03:00
done
else
echo "custom scripts directory is empty"
fi