Skip to content

Commit

Permalink
Merge pull request #399 from alphagov/fix-environment-variable
Browse files Browse the repository at this point in the history
Fix environment variable - REPO_PATH
  • Loading branch information
gemmaleigh authored Mar 22, 2017
2 parents 3db954e + 7e81a70 commit 33ee1c9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions create-release.sh
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
#!/bin/bash
set -e

REPO_PATH='govuk_frontend_toolkit'
REPO_PATH="alphagov/govuk_frontend_toolkit"

echo "Add config for alphagov/$REPO_PATH"

git config --global user.name "Travis CI"
git config --global user.email "[email protected]"
git remote add origin_ssh [email protected]:REPO_PATH.git
git remote add origin_ssh [email protected]:$REPO_PATH.git

# This openssl command was generated automatically by `travis encrypt-file`, see `.travis/README.md` for more details
openssl aes-256-cbc -K $encrypted_909ac1036a94_key -iv $encrypted_909ac1036a94_iv -in .travis/govuk_frontend_toolkit_push.enc -out ~/.ssh/id_rsa -d
Expand Down

0 comments on commit 33ee1c9

Please sign in to comment.