Files
interview/build_time_scripts.sh
2025-05-17 00:25:39 +03:00

13 lines
172 B
Bash
Executable File

# exit on errors
set -e
if [ "$(ls $1)" ]; then
for script in $1/*
do
echo "executing $script"
bash $script
done
else
echo "custom scripts directory is empty"
fi