1
0
mirror of https://github.com/ansible/awx.git synced 2024-10-27 00:55:06 +03:00

Fix a bug in clean languages

The `$` was not escaped for make or shell.
This commit is contained in:
Jesse Wattenbarger 2023-02-13 08:54:37 -05:00
parent 77ec46f6cf
commit af6549ffcd

View File

@ -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