[locale/alpine] exit 0 in gencode-remote

This commit is contained in:
Nico Schottelius 2019-04-15 18:56:51 +02:00
parent e290733a00
commit a1cb9ee869
1 changed files with 9 additions and 0 deletions

View File

@ -37,6 +37,15 @@ locale_remove=$(echo "$locale" | sed 's/UTF-8/utf8/')
state=$(cat "$__object/parameter/state")
os=$(cat "$__global/explorer/os")
# Nothing to be done on alpine
case "$os" in
alpine)
exit 0
;;
esac
case "$state" in
present)
echo localedef -A "$alias" -f "$charmap" -i "$input" "$locale"