From 7821db6c9f585f95459f04bd216a417194a29dc4 Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Sun, 1 Mar 2009 15:30:18 +0100 Subject: [PATCH] sync.sh: Status is the default command now. It was fetch, but this was rather unintuitive. --- sync.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sync.sh b/sync.sh index e76ce8e..a3f9eaf 100755 --- a/sync.sh +++ b/sync.sh @@ -6,12 +6,12 @@ # Select the method: fetch, push and status is possible. -if [ x$1 = x -o x$1 = xfetch -o x$1 = xfe ]; then +if [ x$1 = x -o x$1 = xstatus -o x$1 = xst ]; then + method=status +elif [ $1 = fetch -o $1 = fe ]; then method=fetch elif [ $1 = push -o $1 = pu ]; then method=push -elif [ $1 = status -o $1 = st ]; then - method=status else echo "Usage: sync.sh [fetch | fe | push | pu | status | st]" echo -- 2.44.1