From 5c38863b713405b10d72dc79afc7a8589bb6a11c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Revol?= Date: Sun, 26 Apr 2009 00:01:28 +0000 Subject: [PATCH] Add check for git repositories and update action for them (git pull), since the aGITated QEMU devs just migrated to it. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@30415 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- 3rdparty/mmu_man/scripts/dev-perso | 1 + 1 file changed, 1 insertion(+) diff --git a/3rdparty/mmu_man/scripts/dev-perso b/3rdparty/mmu_man/scripts/dev-perso index b9c4c9f49b..b0663bf2a0 100755 --- a/3rdparty/mmu_man/scripts/dev-perso +++ b/3rdparty/mmu_man/scripts/dev-perso @@ -121,6 +121,7 @@ function dev() { # make sure the update action is the first found in history. test -d .svn && history -s svn up test -d .hg && history -s hg pull + test -d .git && history -s git pull test -d CVS && history -s cvs up -d test -n "$P4PORT" && history -s p4 sync }