From af6549ffcdc964316b40ab9637a259c66a231dae Mon Sep 17 00:00:00 2001 From: Jesse Wattenbarger Date: Mon, 13 Feb 2023 08:54:37 -0500 Subject: [PATCH] Fix a bug in clean languages The `$` was not escaped for make or shell. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 896dcf2c6c..33958ed4c6 100644 --- a/Makefile +++ b/Makefile @@ -83,7 +83,7 @@ clean-schema: clean-languages: rm -f $(I18N_FLAG_FILE) - find ./awx/locale/ -type f -regex ".*\.mo$" -delete + find ./awx/locale/ -type f -regex '.*\.mo$$' -delete ## Remove temporary build files, compiled Python files. clean: clean-ui clean-api clean-awxkit clean-dist