mirror of
https://github.com/searxng/searxng.git
synced 2025-12-22 19:50:00 +00:00
handle input carefully in shell scripts
- prevent whitespace-splitting of variable expansions - prevent interpretation of values as flags/options (mostly)
This commit is contained in:
@@ -7,9 +7,9 @@
|
||||
|
||||
SEARX_DIR='searx'
|
||||
|
||||
pybabel extract -F babel.cfg -o messages.pot $SEARX_DIR
|
||||
for f in `ls $SEARX_DIR'/translations/'`; do
|
||||
pybabel update -N -i messages.pot -d $SEARX_DIR'/translations/' -l $f
|
||||
pybabel extract -F babel.cfg -o messages.pot "$SEARX_DIR"
|
||||
for f in `ls "$SEARX_DIR"'/translations/'`; do
|
||||
pybabel update -N -i messages.pot -d "$SEARX_DIR"'/translations/' -l "$f"
|
||||
done
|
||||
|
||||
echo '[!] update done, edit .po files if required and run pybabel compile -d searx/translations/'
|
||||
|
||||
Reference in New Issue
Block a user