From 3af608ada59d12d73608a045de66d425eedf7003 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Revol?= Date: Tue, 15 May 2012 20:25:34 +0200 Subject: [PATCH] Fix fossil SCM update command * fossil update should do a pull on its own anyway. --- 3rdparty/mmu_man/scripts/dev-perso | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/3rdparty/mmu_man/scripts/dev-perso b/3rdparty/mmu_man/scripts/dev-perso index b3c55f3130..6809930d1c 100755 --- a/3rdparty/mmu_man/scripts/dev-perso +++ b/3rdparty/mmu_man/scripts/dev-perso @@ -159,7 +159,7 @@ dev() { test -z "$DEVUPCMD" -a -d .hg && DEVUPCMD="hg pull" test -z "$DEVUPCMD" -a -d .git && DEVUPCMD="git pull" test -z "$DEVUPCMD" -a -d CVS && DEVUPCMD="cvs up -d" - test -z "$DEVUPCMD" -a \( -f _FOSSIL_ -o -f .fslckout \) && DEVUPCMD="fossil pull" + test -z "$DEVUPCMD" -a \( -f _FOSSIL_ -o -f .fslckout \) && DEVUPCMD="fossil update" test -z "$DEVUPCMD" -a -n "$P4PORT" && DEVUPCMD="p4 sync" test -n "$DEVUPCMD" && history -s "$DEVUPCMD" }