From d6f7309a881c255e292e7d088548296fd5895675 Mon Sep 17 00:00:00 2001 From: Hao Liu Date: Mon, 6 Mar 2023 17:22:18 -0500 Subject: [PATCH] Revert "naming consistancy" This reverts commit e7100389c69c0ad8d6946eb5aca7b97af8752fcf. --- 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 8f9e5f3275..3927034460 100644 --- a/awx/ui_next/Makefile +++ b/awx/ui_next/Makefile @@ -63,14 +63,14 @@ $(UI_NEXT_SRC_DIR): .PHONY: ui_next/build ## Build ui_next from source -ui_next/build: ui_next/src +ui_next/src/build: ui_next/src cd $(UI_NEXT_SRC_DIR) && \ npm install webpack && \ npm run build:awx .PHONY: ui_next/build -## Copy ui_next/build to ui_next/build -ui_next/build: ui_next/build +## Copy ui_next/src/build to ui_next/build +ui_next/build: ui_next/src/build cp -r $(UI_NEXT_SRC_DIR)/build $(UI_NEXT_BUILD_DIR) ## Alias for ui_next/build, will not run if build already exist