Browse Source

sde-update-tree: call ./update.sh scripts when present in the root of a git/svn tree

Signed-off-by: Alejandro Mery <amery@geeks.cl>
stable/0.6
Alejandro Mery 11 years ago
parent
commit
cd01a53887
1 changed files with 7 additions and 0 deletions
  1. +7
    -0
      bin/sde-update-tree

+ 7
- 0
bin/sde-update-tree

@ -101,6 +101,10 @@ update_git()
git remote prune "$remote"
git pull --rebase
fi
if [ -x "./update.sh" ]; then
./update.sh "$prefix"
fi
}
update_svn_nested()
@ -122,6 +126,9 @@ update_svn()
echo_info "$prefix:"
svn up --ignore-externals
if [ -x "./update.sh" ]; then
./update.sh "$prefix"
fi
# nested svn
for x in $( update_svn_nested ); do

Loading…
Cancel
Save