From 603aa9f6d231029165997c8493788ad5c134bc01 Mon Sep 17 00:00:00 2001 From: Ibby Date: Tue, 10 Jan 2017 16:46:35 -0500 Subject: [PATCH] chore(): ignore errors when deleting old docs --- scripts/docs/prepare.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/docs/prepare.sh b/scripts/docs/prepare.sh index b772b9c00..b76283755 100755 --- a/scripts/docs/prepare.sh +++ b/scripts/docs/prepare.sh @@ -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 }