TeaWeb/scripts/in_docker_prep.sh
Gapodo 842cd08574
All checks were successful
ci/woodpecker/push/base Pipeline was successful
moar build script
2023-11-21 15:32:34 +01:00

11 lines
263 B
Bash
Executable file

#!/bin/bash
SCRIPT=$(realpath "$0")
SCRIPTPATH=$(dirname "$SCRIPT")
BASEPATH="$(realpath "${SCRIPTPATH}/../")"
echo "adding secure git dir"
git config --global --add safe.directory '*'
echo "running chmods"
find "${BASEPATH}" -iname "*.sh" -exec chmod +x {} +