Skip to content

Commit

Permalink
Update entrypoint.sh - removed comma from the supported command list
Browse files Browse the repository at this point in the history
  • Loading branch information
rishabhbohra-bito authored Jan 25, 2024
1 parent 30c60fc commit d9fbcb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ echo $INPUT_PR
echo $INPUT_COMMAND
echo $INPUT_OPTIONS

SUPPORTED_COMMANDS=("/review", "review")
SUPPORTED_COMMANDS=("/review" "review")

INPUT_COMMAND=$(echo "$INPUT_COMMAND" | tr -d '[:space:]')
for command in "${SUPPORTED_COMMANDS[@]}"; do
Expand Down

0 comments on commit d9fbcb4

Please sign in to comment.