Add scripts/shell/job/artifactory-search-ETICS-packages.sh file

This commit is contained in:
Matheus Albino Brunhara
2024-08-13 16:30:40 -03:00
parent de0c2e6b57
commit 1af37d4082
2 changed files with 11 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
#!/bin/bash
cur_dir=`pwd`
dirs=`find * -maxdepth 0 -type d`
for d in ${dirs[@]}; do
if [ $d = "code" ]; then
continue
fi
cd $cur_dir/$d
git pull --rebase
done