Skip to content

Commit 97e4594

Browse files
committed
fixing the order of make target calls
1 parent d532919 commit 97e4594

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
@@ -296,12 +296,13 @@ generate-kots-config: cloud_storage = $(if $(findstring external,$(storage)),$(c
296296
generate-kots-config: cloud_registry = $(if $(findstring external,$(registry)),$(cloud),incluster)
297297
generate-kots-config: cloud_db = $(if $(findstring external,$(db)),$(cloud),incluster)
298298
## generate-kots-config: Generate the kots config based on test config
299-
generate-kots-config: select-workspace check-env-cloud get-base-config
299+
generate-kots-config: select-workspace check-env-cloud
300+
if [[ $$runTests == "true" ]]; then $(MAKE) get-github-config; fi
301+
$(MAKE) get-base-config
300302
$(MAKE) storage-config-${cloud_storage}
301303
$(MAKE) db-config-${cloud_db}
302304
$(MAKE) registry-config-${cloud_registry}
303305
if [[ $$self_signed == "true" ]]; then $(MAKE) self-signed-config; fi
304-
if [[ $$runTests == "true" ]]; then $(MAKE) get-github-config; fi
305306

306307
license_community_beta := "../licenses/Community (Beta).yaml"
307308
license_community_stable := "../licenses/Community.yaml"

0 commit comments

Comments
 (0)