6 lines
162 B
Bash
Executable File
6 lines
162 B
Bash
Executable File
#!/bin/bash -x
|
|
|
|
# Fix apostrophes in strings not preceded by a backslash
|
|
|
|
sed -i "/\\(item\\|string\\)/s/\\([^\\]\\)'/\\1\\\\'/g" res/values*/{strings,array}.xml
|