-
Notifications
You must be signed in to change notification settings - Fork 422
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -153,9 +153,9 @@ namespace CommandLineInterface{ | |
ezOptionParser opt; | ||
|
||
opt.overview = VerString; | ||
opt.example = "EnergyPlus -i custom.idd -w weather.epw -d output/ -p prefix -r input.idf"; | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
nealkruis
Author
Member
|
||
opt.example = "energyplus -i custom.idd -w weather.epw -d output/ -p prefix -r input.idf"; | ||
|
||
opt.syntax = "EnergyPlus [options] [input file]"; | ||
opt.syntax = "energyplus [options] [input file]"; | ||
|
||
opt.add("", 0, 0, 0, "Display this message", "-h", "--help"); | ||
|
||
|
4 comments
on commit 999ea96
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Although I don't expect the executable name to change, I've seen a lot of programs just use a cleaned (basename)
argv[0]
in case it does for some reason. What are your thoughts on doing that here?I'm getting pretty excited to see this in action...