Ramialison-Lab-ARMI / Trawler-2.0

Motif discovery tool
GNU General Public License v2.0
1 stars 2 forks source link

trawler -help and -version exit with error code 1 #2

Open peterjc opened 6 years ago

peterjc commented 6 years ago

Both -help and -version explicitly exit with return code 1, which is not appropriate as any non-zero return code is considered an error under Unix/Linux:

https://github.com/Ramialison-Lab-ARMI/Trawler-2.0/blob/61f9a9287d4b589112860d6b6c7f82221c16cb46/modules/Trawler/Constants.pm#L287

https://github.com/Ramialison-Lab-ARMI/Trawler-2.0/blob/61f9a9287d4b589112860d6b6c7f82221c16cb46/modules/Trawler/Constants.pm#L293

Those lines should be exit(0); instead.