Fix fossil checkout filename.

This commit is contained in:
François Revol 2012-04-21 15:28:48 +02:00
parent fce97ba360
commit b8c19d314d

View File

@ -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 pull"
test -z "$DEVUPCMD" -a -n "$P4PORT" && DEVUPCMD="p4 sync"
test -n "$DEVUPCMD" && history -s "$DEVUPCMD"
}