Skip to content

Commit

Permalink
Fix batch scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
PlethoraChutney committed Feb 18, 2023
1 parent 8ceb822 commit 438bc51
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions process-and-rename.bat
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

set /P new_name="Rename experiment to: "

python appia.py process ./* --id "%new_name%" --output-dir "%new_name%" --database
appia process ./* --id "%new_name%" --output-dir "%new_name%" --database

if %ERRORLEVEL%==1 (
if not %ERRORLEVEL% lss 1 (
PAUSE
)
4 changes: 2 additions & 2 deletions process.bat
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
@echo off

python appia.py process ./* --database
appia process ./* --database

if %ERRORLEVEL%==1 (
if not %ERRORLEVEL% lss 1 (
PAUSE
)

0 comments on commit 438bc51

Please sign in to comment.