mirror of
https://github.com/ansible/awx.git
synced 2026-05-09 18:37:36 -02:30
Fix a bug in clean languages
The `$` was not escaped for make or shell.
This commit is contained in:
2
Makefile
2
Makefile
@@ -83,7 +83,7 @@ clean-schema:
|
|||||||
|
|
||||||
clean-languages:
|
clean-languages:
|
||||||
rm -f $(I18N_FLAG_FILE)
|
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.
|
## Remove temporary build files, compiled Python files.
|
||||||
clean: clean-ui clean-api clean-awxkit clean-dist
|
clean: clean-ui clean-api clean-awxkit clean-dist
|
||||||
|
|||||||
Reference in New Issue
Block a user