Skip to content

Commit

Permalink
#156: Added exit code 1 to .bat scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
HolgerKnublauch committed Nov 15, 2023
1 parent fa6627b commit 15d7973
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/main/command/shaclinfer.bat
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ set SHACL_HOME=%SHACLROOT%

if NOT "%SHACL_HOME%" == "" goto :okHome
echo SHACL_HOME not set
exit /B
exit /B 1

:okHome
set SHACL_CP=%SHACL_HOME%\lib\*;
Expand Down
2 changes: 1 addition & 1 deletion src/main/command/shaclvalidate.bat
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ set SHACL_HOME=%SHACLROOT%

if NOT "%SHACL_HOME%" == "" goto :okHome
echo SHACL_HOME not set
exit /B
exit /B 1

:okHome
set SHACL_CP=%SHACL_HOME%\lib\*;
Expand Down

0 comments on commit 15d7973

Please sign in to comment.