diff options
-rwxr-xr-x | update-repos | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/update-repos b/update-repos index f301234..3c63847 100755 --- a/update-repos +++ b/update-repos @@ -7,3 +7,9 @@ find "${base_dir}/work/repositories/git" \ -maxdepth 1 \ -type d \ -exec git -C {} remote update \; + +find "${base_dir}/work/repositories/hg" \ + -mindepth 1 \ + -maxdepth 1 \ + -type d \ + -exec hg --cwd {} pull \; |