Skip to content
This repository has been archived by the owner on Sep 14, 2018. It is now read-only.

Commit

Permalink
Fix usage message and move to RC2
Browse files Browse the repository at this point in the history
  • Loading branch information
slide committed Jul 25, 2016
1 parent 428db19 commit 73950bb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CurrentVersion.props
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<MicroVersion>6</MicroVersion>
<!-- Allowed: alpha,beta,candidate,final -->
<ReleaseLevel>candidate</ReleaseLevel>
<ReleaseSerial>1</ReleaseSerial>
<ReleaseSerial>2</ReleaseSerial>

<AssemblyRevision>0</AssemblyRevision>
</PropertyGroup>
Expand Down
4 changes: 2 additions & 2 deletions Languages/IronPython/IronPythonCompiler/ConsoleOps.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public static void Info(string format, params object[] args) {
public static void Usage(bool doExit = false) {
Console.WriteLine(@"ipyc: The Command-Line IronPython Compiler
Usage: ipc.exe [options] file [file ...]
Usage: ipyc.exe [options] file [file ...]
Options:
/out:output_file Output file name (default is main_file.<extenstion>)
Expand All @@ -60,7 +60,7 @@ public static void Usage(bool doExit = false) {
/win32icon:file.ico Sets file.ico as the icon for the executable
Example:
ipc.exe /main:Program.py Form.py /target:winexe");
ipyc.exe /main:Program.py Form.py /target:winexe");
if (doExit) {
Environment.Exit(0);
}
Expand Down

0 comments on commit 73950bb

Please sign in to comment.