We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
C.utf8
1 parent d9c608d commit 8a72ffbCopy full SHA for 8a72ffb
useful-tools/quick-sharun.sh
@@ -1563,6 +1563,12 @@ done <<-EOF
1563
$ADD_DIR
1564
EOF
1565
1566
+# some apps may crash when they fallback to C locale because they need an utf8 locale
1567
+if [ -d /usr/lib/locale/C.utf8 ] && [ ! -d "$APPDIR"/shared/lib/locale/C.utf8 ]; then
1568
+ mkdir -p "$APPDIR"/shared/lib/locale
1569
+ cp -r /usr/lib/locale/C.utf8 "$APPDIR"/shared/lib/locale
1570
+fi
1571
+
1572
# wrap any executable in lib with sharun
1573
for b in $(find "$APPDIR"/shared/lib/ -type f ! -name '*.so*'); do
1574
if [ -x "$b" ] && [ -x "$APPDIR"/shared/bin/"${b##*/}" ]; then
0 commit comments