Hi, 

I found a small typo on usage text of "fossil config" command. Actual
usage text for push/pull/sync commands refer to "fossil config *pull*"
in the usage text.

Here's a simple patch..

(By the way, Richard should have receive my Contributor Agreement)

-- 
Martin G.
Index: src/configure.c
==================================================================
--- src/configure.c
+++ src/configure.c
@@ -888,11 +888,11 @@
     if( strncmp(zMethod,"pull",n)==0 ){
       overwriteFlag = find_option("overwrite",0,0)!=0;
     }
     url_proxy_options();
     if( g.argc!=4 && g.argc!=5 ){
-      usage("pull AREA ?URL?");
+      usage(mprintf("%s AREA ?URL?",zMethod));
     }
     mask = configure_name_to_mask(g.argv[3], 1);
     if( g.argc==5 ){
       zServer = g.argv[4];
     }

_______________________________________________
fossil-users mailing list
[email protected]
http://lists.fossil-scm.org:8080/cgi-bin/mailman/listinfo/fossil-users

Reply via email to