chore(): ignore errors when deleting old docs

This commit is contained in:
Ibby 2017-01-10 16:46:35 -05:00
parent f4fa8c31f0
commit 603aa9f6d2

View File

@ -30,7 +30,7 @@ function run {
git pull origin master
fi
git rm -rf content/docs/v2/native/*/ > /dev/null
git rm -rf content/docs/v2/native/*/ || true
}