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
|
find . | treh -c
|
||||||
git add --all
|
git add --all
|
||||||
if git log -1 --format=%s | grep "$hash$"
|
if git log -1 --format=%s | grep "$hash$"
|
||||||
then git commit --amend --no-edit
|
then git commit --no-verify --amend --no-edit
|
||||||
else git commit -m "Update blog to $hash"
|
else git commit --no-verify -m "Update blog to $hash"
|
||||||
fi
|
fi
|
||||||
git push --force origin page
|
git push --force origin page
|
||||||
cd ../
|
cd ../
|
||||||
|
|
Loading…
Reference in a new issue