dev-env/bin/script/pull
2024-08-24 18:07:06 +00:00

12 lines
160 B
Bash
Executable File

#!/bin/bash
EXEC_DIR=$(pwd)
echo "Execute git pull in each system"
for SYSTEM in $EXEC_DIR/systems/*/*/ ; do
cd $SYSTEM
git pull
cd $EXEC_DIR
done