Skip to content

Commit

Permalink
Fix OR syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
sma11black committed Oct 21, 2020
1 parent 9e85772 commit 08f5143
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 @@ -20,7 +20,7 @@ npm install hexo-deployer-git --save
if [ "$INPUT_COMMIT_MSG" = "none" ]
then
hexo g -d
elif [ "$INPUT_COMMIT_MSG" = "" || "$INPUT_COMMIT_MSG" = "default" ]
elif [ "$INPUT_COMMIT_MSG" = "" ] || [ "$INPUT_COMMIT_MSG" = "default" ]
then
# pull original publish repo
NODE_PATH=$NODE_PATH:$(pwd)/node_modules node /sync_deploy_history.js
Expand Down

0 comments on commit 08f5143

Please sign in to comment.