-
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.
Merge pull request #642 from debrief/viewer-mode
Add Viewer mode
- Loading branch information
Showing
7 changed files
with
120 additions
and
23 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
@echo off | ||
CALL set_paths.bat | ||
REM If error returned from set_paths.bat then don't continue with running python | ||
IF ERRORLEVEL 1 GOTO :ERROR | ||
|
||
python -m pepys_admin.cli --viewer %1 %2 %3 %4 %5 %6 %7 %8 %9 | ||
PAUSE | ||
|
||
REM Go to the end of the file, skipping the :ERROR label below | ||
GOTO :eof | ||
|
||
REM PAUSE so that the user can see the error | ||
:ERROR | ||
PAUSE |
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,14 @@ | ||
@echo off | ||
CALL set_paths.bat | ||
REM If error returned from set_paths.bat then don't continue with running python | ||
IF ERRORLEVEL 1 GOTO :ERROR | ||
|
||
python -m pepys_admin.cli --viewer --training %1 %2 %3 %4 %5 %6 %7 %8 %9 | ||
PAUSE | ||
|
||
REM Go to the end of the file, skipping the :ERROR label below | ||
GOTO :eof | ||
|
||
REM PAUSE so that the user can see the error | ||
:ERROR | ||
PAUSE |
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
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