Files
interview/build_time_scripts.sh

14 lines
262 B
Bash
Raw Normal View History

2025-05-16 22:11:10 +03:00
# exit on errors
set -e
# now let's fire up all the scripts from the
# directory which we received as a second argument
if [ "$(ls $1)" ]; then
for script in $1/*
do
echo "executing $script"
$script
done
else
echo "custom scripts directory is empty"
fi