File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
maven-scm-client/src/main/java/org/apache/maven/scm/client/cli
maven-scm-providers/maven-scm-provider-hg/src/main/java/org/apache/maven/scm/provider/hg Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -91,7 +91,7 @@ public static void main( String[] args )
91
91
}
92
92
catch ( Exception ex )
93
93
{
94
- System .err .println ( "Error while starting Maven Scm ." );
94
+ System .err .println ( "Error while starting Maven SCM ." );
95
95
96
96
ex .printStackTrace ( System .err );
97
97
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ public class HgConfig
41
41
private static final String HG_REQ = "0.9.2" ;
42
42
43
43
// The string which indicates the beginning of the Mercurial line
44
- private static final String HG_VERSION_TAG = "ercurial Distributed SCM (version " ;
44
+ private static final String HG_VERSION_TAG = "Mercurial Distributed SCM (version " ;
45
45
46
46
// URL to download mercurial from
47
47
private static final String HG_INSTALL_URL = "'http://www.selenic.com/mercurial/wiki/index.cgi/Download'" ;
@@ -83,7 +83,7 @@ private boolean isComplete()
83
83
public static HgVersionConsumer getHgVersion ( File workingDir )
84
84
throws ScmException
85
85
{
86
- String [] versionCmd = new String []{HgCommandConstants .VERSION };
86
+ String [] versionCmd = new String []{ HgCommandConstants .VERSION };
87
87
HgVersionConsumer consumer = new HgVersionConsumer ( HG_VERSION_TAG );
88
88
Commandline cmd = HgUtils .buildCmd ( workingDir , versionCmd );
89
89
@@ -188,4 +188,4 @@ public String toString( File workingDir )
188
188
return "\n Your Hg installation seems to be " + getInstalledStr () + "\n Hg version: "
189
189
+ hgVersion .getVersion () + ( hgOk ? " (OK)" : " (May be INVALID)" ) + "\n " ;
190
190
}
191
- }
191
+ }
You can’t perform that action at this time.
0 commit comments