Skip to content
This repository has been archived by the owner on Mar 22, 2024. It is now read-only.

Commit

Permalink
fix: there was a space at the end of the line...
Browse files Browse the repository at this point in the history
It broke everything 🤦‍♀️
  • Loading branch information
sjparkinson committed Jul 29, 2019
1 parent fee20e2 commit 7a7ffbe
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions src/tasks/deploy.mk
Original file line number Diff line number Diff line change
Expand Up @@ -95,15 +95,13 @@ change-api:
@echo "Saving deployment to the Change API..."
@curl -s \
--header "Content-Type: application/json" \
--header "x-api-key: $(CHANGE_API_KEY)" \
--header "X-Api-Key: $(CHANGE_API_KEY)" \
--request POST \
--data "{ \
\"user\": { \
\"githubName\": \"$(CIRCLE_USERNAME)\" \
}, \
\"user\": { \"githubName\": \"$(CIRCLE_USERNAME)\" }, \
\"environment\": \"production\", \
\"systemCode\": \"$(shell curl -s https://next-registry.ft.com/v2/ | jq -r ".[] | select(.repository == \"https://github.com/${CIRCLE_PROJECT_USERNAME}/${CIRCLE_PROJECT_REPONAME}\") | .code")\", \
\"gitRepositoryName\": \"$(CIRCLE_PROJECT_USERNAME)/$(CIRCLE_PROJECT_REPONAME)\", \
\"gitRepositoryName\": \"$(CIRCLE_PROJECT_USERNAME)/$(CIRCLE_PROJECT_REPONAME)\", \
\"commit\": \"$(CIRCLE_SHA1)\" \
}" \
https://api.ft.com/change-log/v1/create
Expand Down

0 comments on commit 7a7ffbe

Please sign in to comment.