Disable commit verification on deployment
This commit is contained in:
parent
55a497fe02
commit
f3e175f2f5
1 changed files with 2 additions and 2 deletions
|
@ -40,8 +40,8 @@ task.deploy {
|
|||
find . | treh -c
|
||||
git add --all
|
||||
if git log -1 --format=%s | grep "$hash$"
|
||||
then git commit --amend --no-edit
|
||||
else git commit -m "Update blog to $hash"
|
||||
then git commit --no-verify --amend --no-edit
|
||||
else git commit --no-verify -m "Update blog to $hash"
|
||||
fi
|
||||
git push --force origin page
|
||||
cd ../
|
||||
|
|
Loading…
Reference in a new issue