Skip to content

Commit 9c5a192

Browse files
committed
adding fixes to make command paths for proxygen
1 parent 10a994a commit 9c5a192

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,11 +69,11 @@ get-spec-uat: # Get the most recent specification live in proxygen
6969

7070
publish-spec: # Publish the specification to proxygen
7171
$(MAKE) setup-proxygen-credentials
72-
proxygen spec publish --specification-file build/prod/eligibility-signposting-api.yaml
72+
proxygen spec publish build/specification/prod/eligibility-signposting-api.yaml
7373

7474
publish-spec-uat: # Publish the specification to proxygen
7575
$(MAKE) setup-proxygen-credentials
76-
proxygen spec publish --specification-file build/preprod/eligibility-signposting-api.yaml --uat
76+
proxygen spec publish build/specification/preprod/eligibility-signposting-api.yaml --uat
7777

7878
delete-spec: # Delete the specification from proxygen
7979
$(MAKE) setup-proxygen-credentials
@@ -112,7 +112,7 @@ set-ratelimit: guard-APIM_ENV
112112
< specification/x-nhsd-apim/ratelimit-template.yaml > specification/x-nhsd-apim/ratelimit.yaml
113113

114114
update-spec-template: guard-APIM_ENV
115-
ifeq ($(APIM_ENV), $(filter $(APIM_ENV), sandbox internal-dev int ref prod ))
115+
ifeq ($(APIM_ENV), $(filter $(APIM_ENV), sandbox internal-dev int ref preprod prod ))
116116
@ $(MAKE) set-target APIM_ENV=$$APIM_ENV
117117
@ $(MAKE) set-access APIM_ENV=$$APIM_ENV
118118
@ $(MAKE) set-security APIM_ENV=$$APIM_ENV

0 commit comments

Comments
 (0)