Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion claude-workflows/pr-review/scripts/pr-comment.sh
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ while [ $# -gt 0 ]; do
shift
;;
*)
echo "Error: Unknown argument: $1"
echo "Error: Unknown argument: $1. Use: --severity <critical|high|medium|low|nitpick> --title <description> --why <reason> [--no-suggestion]"
exit 1
;;
esac
Expand Down
2 changes: 1 addition & 1 deletion scripts/move-github-dotgithub.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ for arg in "$@"; do
echo " --push git add, commit, and push after moving files"
exit 0
;;
*) echo "Unknown flag: $arg"; exit 1 ;;
*) echo "Error: Unknown flag: $arg. Use --help for usage." >&2; exit 1 ;;
esac
done

Expand Down