Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions general_setup
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ gs_usage_info()
echo " RHEL systems, default is none."
echo " --usage: this usage message."
echo " --use_pcp: Enables use of Performance Co-Pilot in wrappers, defaults to 0."
echo " --debug: Enables bash -x output, useful for debugging issues with wrappers"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Quibble: If we're trying to maintain alphabetical order in the option list this should go at the other end.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think the ordering goes out the window anyway once it hits a wrapper, but easy fix.

exit 1
}

Expand Down Expand Up @@ -207,6 +208,11 @@ do
to_use_pcp=1
shift 1
;;
--debug)
i=$((i + 1))
set -x
shift 1
;;
--)
break;
;;
Expand Down
Loading