Skip to content

Commit 680d9a7

Browse files
committed
fixing the order of make target calls
1 parent 86bb7b3 commit 680d9a7

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

install/tests/Makefile

+3-2
Original file line numberDiff line numberDiff line change
@@ -337,12 +337,13 @@ generate-kots-config: cloud_storage = $(if $(findstring external,$(storage)),$(c
337337
generate-kots-config: cloud_registry = $(if $(findstring external,$(registry)),$(cloud),incluster)
338338
generate-kots-config: cloud_db = $(if $(findstring external,$(db)),$(cloud),incluster)
339339
## generate-kots-config: Generate the kots config based on test config
340-
generate-kots-config: select-workspace check-env-cloud get-base-config check-env-domain check-env-sub-domain
340+
generate-kots-config: select-workspace check-env-cloud check-env-domain check-env-sub-domain
341+
if [[ $$runTests == "true" ]]; then $(MAKE) get-github-config; fi
342+
$(MAKE) get-base-config
341343
$(MAKE) storage-config-${cloud_storage}
342344
$(MAKE) db-config-${cloud_db}
343345
$(MAKE) registry-config-${cloud_registry}
344346
if [[ $$self_signed == "true" ]]; then $(MAKE) self-signed-config; fi
345-
if [[ $$runTests == "true" ]]; then $(MAKE) get-github-config; fi
346347

347348
license_community_beta := "../licenses/Community (Beta).yaml"
348349
license_community_stable := "../licenses/Community.yaml"

0 commit comments

Comments
 (0)