Fossil SCM
Fix usage statement for new "fossil get" command as mentioned in [forum:/forumpost/7b3e0e0582525d3b|forum post 7b3e0e0582525d3b].
Commit
788e68b080b5c3a1b5456b8e473ed272e87e8937f2e838c573f3de9b549a3cca
Parent
2f9920a151c7986…
1 file changed
+1
-1
+1
-1
| --- src/checkout.c | ||
| +++ src/checkout.c | ||
| @@ -493,11 +493,11 @@ | ||
| 493 | 493 | |
| 494 | 494 | z = find_option("dest",0,1); |
| 495 | 495 | if( z ) zDest = fossil_strdup(z); |
| 496 | 496 | verify_all_options(); |
| 497 | 497 | if( g.argc<3 || g.argc>4 ){ |
| 498 | - usage("get URL ?VERSION? ?OPTIONS?"); | |
| 498 | + usage("URL ?VERSION? ?OPTIONS?"); | |
| 499 | 499 | } |
| 500 | 500 | zUrl = g.argv[2]; |
| 501 | 501 | zVers = g.argc==4 ? g.argv[3] : "trunk"; |
| 502 | 502 | |
| 503 | 503 | /* Parse the URL of the repository */ |
| 504 | 504 |
| --- src/checkout.c | |
| +++ src/checkout.c | |
| @@ -493,11 +493,11 @@ | |
| 493 | |
| 494 | z = find_option("dest",0,1); |
| 495 | if( z ) zDest = fossil_strdup(z); |
| 496 | verify_all_options(); |
| 497 | if( g.argc<3 || g.argc>4 ){ |
| 498 | usage("get URL ?VERSION? ?OPTIONS?"); |
| 499 | } |
| 500 | zUrl = g.argv[2]; |
| 501 | zVers = g.argc==4 ? g.argv[3] : "trunk"; |
| 502 | |
| 503 | /* Parse the URL of the repository */ |
| 504 |
| --- src/checkout.c | |
| +++ src/checkout.c | |
| @@ -493,11 +493,11 @@ | |
| 493 | |
| 494 | z = find_option("dest",0,1); |
| 495 | if( z ) zDest = fossil_strdup(z); |
| 496 | verify_all_options(); |
| 497 | if( g.argc<3 || g.argc>4 ){ |
| 498 | usage("URL ?VERSION? ?OPTIONS?"); |
| 499 | } |
| 500 | zUrl = g.argv[2]; |
| 501 | zVers = g.argc==4 ? g.argv[3] : "trunk"; |
| 502 | |
| 503 | /* Parse the URL of the repository */ |
| 504 |