Skip to content

Commit

Permalink
Merge pull request #108 from Deltares/feature/DEI-207-handle-double-c…
Browse files Browse the repository at this point in the history
…lick-executable

feature/DEI-207: handle double click executable
  • Loading branch information
wschoonveld authored Jun 4, 2024
2 parents c82fa8c + 709fa1a commit f4d126c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -184,3 +184,4 @@ If you found D-Eco Impact useful for your study, please cite it as:
Weeber, M., Elzinga, H., Schoonveld, W., Van de Vries, C., Klapwijk, M., Mischa, I., Rodriguez Aguilera, D., Farrag, M., Ye, Q., Markus, A., Van Oorschot, M., Saager, P., & Icke, J. (2024). D-Eco Impact (v0.3.0). Zenodo. https://doi.org/10.5281/zenodo.10941913
5 changes: 4 additions & 1 deletion decoimpact/business/utils/command_line_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,10 @@ def read_command_line_arguments():
print("D-EcoImpact version:", version)
sys.exit()
else:
print("\nNo inputfile given. Exiting. \n")
print("\nNo inputfile given.\n")
print("===========================================")
parser.print_help()
print("===========================================")
input("\nPlease provide an input.yaml file. Hit Enter to exit.\n")
sys.exit()
return input_path

0 comments on commit f4d126c

Please sign in to comment.