Tweak darcs-all script
authorIan Lynagh <igloo@earth.li>
Wed, 25 Apr 2007 12:46:20 +0000 (12:46 +0000)
committerIan Lynagh <igloo@earth.li>
Wed, 25 Apr 2007 12:46:20 +0000 (12:46 +0000)
If you got darcs by SSH without specifying a username then the script
would break.

darcs-all

index f4642c0..65d6612 100644 (file)
--- a/darcs-all
+++ b/darcs-all
@@ -8,9 +8,11 @@ top_dirs="nofib testsuite"
 # based on where this GHC repo came from.
 defaultrepo=`cat _darcs/prefs/defaultrepo`
 case $defaultrepo in
-  http://* | *@*:*)
+  # HTTP or SSH:
+  http://* | *:*)
     defaultrepo_base="`echo $defaultrepo | sed 's!/ghc$!!'`"
     defaultrepo_lib="$defaultrepo_base"/packages;;
+  # Local filesystem (assumes a checked-out tree):
   /*)
     defaultrepo_base="$defaultrepo"
     defaultrepo_lib="$defaultrepo"/libraries;;