Skip to content

Commit 30746d1

Browse files
authored
fix file name in makefile (#324)
`installCatalogUsingWskDeploy.sh` isn't actually the name of the file in that repo. It's similar, but the actual file name has a lower case 'd' in 'deploy'.
1 parent a7f2a99 commit 30746d1

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docker-compose/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ init-api-management:
382382

383383
.PHONY: init-catalog
384384
init-catalog:
385-
OPENWHISK_HOME=$(OPENWHISK_PROJECT_HOME) $(OPENWHISK_CATALOG_HOME)/packages/installCatalogUsingWskDeploy.sh \
385+
OPENWHISK_HOME=$(OPENWHISK_PROJECT_HOME) $(OPENWHISK_CATALOG_HOME)/packages/installCatalogUsingWskdeploy.sh \
386386
`cat $(OPENWHISK_PROJECT_HOME)/ansible/files/auth.whisk.system` \
387387
$(DOCKER_HOST_IP):443 \
388388
$(WSK_CLI)
@@ -496,7 +496,7 @@ $(addprefix install-package-,$(PACKAGES)):
496496
$(eval PACKAGE_NAME:= $(shell echo $(@) | cut -b 17-))
497497
$(eval PACKAGE_HOME := $(PACKAGE_$(shell echo $(PACKAGE_NAME) | tr 'a-z' 'A-Z')_HOME))
498498
cd $(PACKAGE_HOME) && \
499-
$(shell cat $(TMP_HOME)/tmp/openwhisk/providers.env) ./installCatalogUsingWskDeploy.sh $(realpath $(OPENWHISK_PROJECT_HOME))/ansible/files/auth.whisk.system $(DOCKER_HOST_IP) "http://$(DOCKER_HOST_IP):5984" $(OPEN_WHISK_DB_PREFIX) $(DOCKER_HOST_IP)
499+
$(shell cat $(TMP_HOME)/tmp/openwhisk/providers.env) ./installCatalogUsingWskdeploy.sh $(realpath $(OPENWHISK_PROJECT_HOME))/ansible/files/auth.whisk.system $(DOCKER_HOST_IP) "http://$(DOCKER_HOST_IP):5984" $(OPEN_WHISK_DB_PREFIX) $(DOCKER_HOST_IP)
500500

501501
.PHONY: $(addprefix start-provider-,$(PACKAGES))
502502
$(addprefix start-provider-,$(PACKAGES)):

0 commit comments

Comments
 (0)