Skip to content

Commit

Permalink
Merge pull request #341 from perftool-incubator/dev-kmr
Browse files Browse the repository at this point in the history
print the help message if no arguments to crucible are provided
  • Loading branch information
k-rister authored May 20, 2024
2 parents 61fb61c + 48ef308 commit a4d92bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/crucible
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ if [ "$1" == "log" ]; then
echo "log command not supported because CRUCIBLE_USE_LOGGER = 0"
exit
fi
elif [ "$1" == "help" ]; then
elif [ "$1" == "help" -o -z "$1" ]; then
# print all help output outside of the logger context to avoid
# filling the log with generic help information

Expand Down

0 comments on commit a4d92bf

Please sign in to comment.