From 956b2734f4e3e288ccbbda58bd08203404e60eca Mon Sep 17 00:00:00 2001 From: Jesse Duffield Date: Sat, 7 Sep 2019 19:20:18 +1000 Subject: [PATCH] Revert "checkout latest master before updating docs" This reverts commit 42e029c45ea6e95de490e8233f155c9d7e7b4dc5. --- .circleci/update_docs.sh | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.circleci/update_docs.sh b/.circleci/update_docs.sh index d5e646dc..374213b2 100755 --- a/.circleci/update_docs.sh +++ b/.circleci/update_docs.sh @@ -2,12 +2,6 @@ set -ex -git config user.name "lazydocker bot" -git config user.email "jessedduffield@gmail.com" - -git checkout master # just making sure we're up to date -git pull - # see if we have a new cheatsheet # if other docs end up being generated automatically we can chuck in the relevant scripts here go run scripts/generate_cheatsheet.go @@ -20,6 +14,11 @@ fi echo "committing updated docs" +git config user.name "lazydocker bot" +git config user.email "jessedduffield@gmail.com" + +git checkout master # just making sure we're up to date +git pull git add docs/* git commit -m "update docs" git push -u origin master \ No newline at end of file