From c7f2fdbe579c2e5ec2471caf2e7bfc4d4e627bfa Mon Sep 17 00:00:00 2001 From: Hao Liu Date: Wed, 16 Aug 2023 16:06:56 -0400 Subject: [PATCH] Rename ui_next index.html to index_awx.html during build process Due to change made in https://github.com/ansible/ansible-ui/pull/766/files#diff-7ae45ad102eab3b6d7e7896acd08c427a9b25b346470d7bc6507b6481575d519R18 awx/ui_next/build/awx/index_awx.html was renamed to awx/ui_next/build/awx/index.html This PR fixes the problem by renaming the file back --- awx/ui_next/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/ui_next/Makefile b/awx/ui_next/Makefile index e51a085fd5..a3d0013d2b 100644 --- a/awx/ui_next/Makefile +++ b/awx/ui_next/Makefile @@ -22,7 +22,7 @@ $(UI_NEXT_DIR)/build: @$(MAKE) $(UI_NEXT_DIR)/src/build/awx @echo "=== Copying $(UI_NEXT_DIR)/src/build to $(UI_NEXT_DIR)/build ===" @rm -rf $(UI_NEXT_DIR)/build - @cp -r $(UI_NEXT_DIR)/src/build $(UI_NEXT_DIR) + @cp -r $(UI_NEXT_DIR)/src/build $(UI_NEXT_DIR) && mv build/awx/index.html build/awx/index_awx.html @echo "=== Done building $(UI_NEXT_DIR)/build ===" .PHONY: ui-next/src/build