From 6b6d53a624b6bfe8f18a5484bf1be4e479efbcbb Mon Sep 17 00:00:00 2001 From: Evgeniy Sokolov Date: Mon, 12 Feb 2018 23:10:54 +0100 Subject: [PATCH] fix hardcoded repo slug --- files/push.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/push.sh b/files/push.sh index 88cf313..ee0ff92 100644 --- a/files/push.sh +++ b/files/push.sh @@ -12,7 +12,7 @@ commit_files() { } upload_files() { - git remote add origin-master https://${GH_TOKEN}@github.com/andreyors/de_faq.git > /dev/null 2>&1 + git remote add origin-master https://${GH_TOKEN}@github.com/${TRAVIS_REPO_SLUG}.git > /dev/null 2>&1 git push --quiet --set-upstream origin-master master }