Skip to content
Snippets Groups Projects
Commit d4f06f29 authored by Jason Hiser's avatar Jason Hiser :tractor:
Browse files

fixed exit code for cleanup mode to indicate non-error

parent 265af4e0
No related branches found
No related tags found
No related merge requests found
Pipeline #228 failed
...@@ -661,7 +661,7 @@ int main(int argc, char* argv[]) ...@@ -661,7 +661,7 @@ int main(int argc, char* argv[])
clean(); clean();
if(!my_options.quiet) if(!my_options.quiet)
cout<<"PEDI: Cleanup complete!"<<endl; cout<<"PEDI: Cleanup complete!"<<endl;
exit(1); return 0;
} }
update_configs(); update_configs();
read_configs(); read_configs();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment