Skip to content

Commit

Permalink
fix: Update entrypoint.sh (#26)
Browse files Browse the repository at this point in the history
  • Loading branch information
shenxianpeng authored Nov 19, 2023
1 parent c67a844 commit 8963505
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,14 @@ run_commit_check(){
args=""
if [[ "$MESSAGE" == "true" ]]; then
args="$args --message"
elif [[ "$BRANCH" == "true" ]]; then
fi
if [[ "$BRANCH" == "true" ]]; then
args="$args --branch"
elif [[ "$AUTHOR_NAME" == "true" ]]; then
fi
if [[ "$AUTHOR_NAME" == "true" ]]; then
args="$args --author-name"
elif [[ "$AUTHOR_EMAIL" == "true" ]]; then
fi
if [[ "$AUTHOR_EMAIL" == "true" ]]; then
args="$args --author-email"
fi

Expand Down

0 comments on commit 8963505

Please sign in to comment.