-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Do "press any key to continue" on separate bat
The old version of the script only prevented closing the cmd window on Windos whan a syntax error occurred. If a command line parsing error or uncaught exceptin occurred it would not pause the program. The fix for this is to move the "press any key to continue" feature to a separate windows-only bat file and get rid of the "--quiet" flag. This also means there is no cruft for the Linux version of the program.
- Loading branch information
Hugo
committed
Dec 19, 2014
1 parent
13bb80d
commit fea16c6
Showing
3 changed files
with
16 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
@echo off | ||
scfgc.exe %* | ||
if errorlevel 1 pause |