From 62a2a2d8bd8b7a240928f776f70924bde4376ed9 Mon Sep 17 00:00:00 2001 From: TheOrangeOne Date: Wed, 24 Aug 2016 10:32:42 +0100 Subject: [PATCH] move git config set to config --- Makefile | 2 -- circle.yml | 2 ++ 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 6cea104..2825bd4 100644 --- a/Makefile +++ b/Makefile @@ -62,8 +62,6 @@ spellcheck: upload: build git clone https://github.com/RealOrangeOne/host-container.git $(DEPLOY_DIR) - git config --global user.email "git@theorangeone.net" - git config --global user.name "TheOrangeOne" cp -rf $(OUTPUTDIR)/. $(DEPLOY_DIR)/site/ @cd $(DEPLOY_DIR) && git remote add dokku $(DEPLOY_URL) && git add . && git commit -m "add files" && git push -f dokku master --quiet rm -rf $(DEPLOY_DIR) diff --git a/circle.yml b/circle.yml index bf7cbac..b2acadf 100644 --- a/circle.yml +++ b/circle.yml @@ -20,4 +20,6 @@ deployment: production: branch: master commands: + - git config --global user.email "git@theorangeone.net" + - git config --global user.name "TheOrangeOne" - make upload