Check-in [f438092f88]
Not logged in
Overview

SHA1 Hash:f438092f883512e35499d6767af9fbc028dd8ba4
Date: 2009-08-09 22:13:26
User: bch
Comment:correct error message for "fossil all " (as per addition of "ls" subcommand alias)
Timelines: ancestors | descendants | both | trunk
Other Links: files | ZIP archive | manifest

Tags And Properties
Changes
[hide diffs]

Modified src/allrepo.c from [c9f89e211d] to [24723f7eda].

@@ -105,11 +105,11 @@
     zCmd = "rebuild";
   }else if( strncmp(zCmd, "sync", n)==0 ){
     zCmd = "sync -autourl -R";
   }else{
     fossil_fatal("\"all\" subcommand should be one of: "
-                 "list push pull rebuild sync");
+                 "list ls push pull rebuild sync");
   }
   zFossil = quoteFilename(g.argv[0]);
   nMissing = 0;
   db_prepare(&q, "SELECT substr(name, 6) FROM global_config"
                  " WHERE substr(name, 1, 5)=='repo:' ORDER BY 1");