]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
sync.sh: Status is the default command now.
authorSimon Ruderich <simon@ruderich.org>
Sun, 1 Mar 2009 14:30:18 +0000 (15:30 +0100)
committerSimon Ruderich <simon@ruderich.org>
Sun, 1 Mar 2009 14:30:18 +0000 (15:30 +0100)
It was fetch, but this was rather unintuitive.

sync.sh

diff --git a/sync.sh b/sync.sh
index e76ce8e55a149d9af664291dfc6032f9fb06f8fb..a3f9eaf124ffc324b942582a7e30ff2736fddcb2 100755 (executable)
--- 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