Skip to content

Commit

Permalink
Merge pull request #76 from ghisvail/conda
Browse files Browse the repository at this point in the history
Return EXIT_SUCCESS if no command provided
  • Loading branch information
KrisThielemans authored May 30, 2021
2 parents f1e929d + 457f402 commit 7ebe4bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/PETPVC.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ int main(int argc, char *argv[])
//Parse command line.
if (!command.Parse(argc, argv)) {
printPVCMethodList();
return EXIT_FAILURE;
return EXIT_SUCCESS;
}

//Get image filenames
Expand Down

0 comments on commit 7ebe4bc

Please sign in to comment.