From e7100389c69c0ad8d6946eb5aca7b97af8752fcf Mon Sep 17 00:00:00 2001 From: Hao Liu Date: Mon, 6 Mar 2023 17:19:33 -0500 Subject: [PATCH] naming consistancy --- awx/ui_next/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/awx/ui_next/Makefile b/awx/ui_next/Makefile index 83ddd078ec..e55952fe4a 100644 --- a/awx/ui_next/Makefile +++ b/awx/ui_next/Makefile @@ -62,14 +62,14 @@ $(UI_NEXT_SRC_DIR): .PHONY: ui_next/build ## Build ui_next from source -ui_next/src/build: ui_next/src +ui_next/build: ui_next/src cd $(UI_NEXT_SRC_DIR) && \ npm install webpack && \ npm run build:awx .PHONY: ui_next/build -## Copy ui_next/src/build to ui_next/build -ui_next/build: ui_next/src/build +## Copy ui_next/build to ui_next/build +ui_next/build: ui_next/build cp -r $(UI_NEXT_SRC_DIR)/build $(UI_NEXT_BUILD_DIR) ## Alias for ui_next/build, will not run if build already exist