monetary/alpine
Some checks failed
/ arch (push) Successful in 3m43s
/ alpine (push) Successful in 1m58s
/ fedora (push) Successful in 12m57s
/ opensuse (push) Failing after 2m57s
/ alma (push) Successful in 12m33s
/ rocky (push) Successful in 13m17s
/ ubuntu (push) Successful in 7m12s
/ debian (push) Failing after 3m41s
Some checks failed
/ arch (push) Successful in 3m43s
/ alpine (push) Successful in 1m58s
/ fedora (push) Successful in 12m57s
/ opensuse (push) Failing after 2m57s
/ alma (push) Successful in 12m33s
/ rocky (push) Successful in 13m17s
/ ubuntu (push) Successful in 7m12s
/ debian (push) Failing after 3m41s
This commit is contained in:
parent
c64014d617
commit
74e2335cdb
1 changed files with 6 additions and 4 deletions
|
@ -887,9 +887,6 @@ spcd_txt_locale() {
|
|||
;;
|
||||
esac
|
||||
local name
|
||||
for name in "${@}"; do
|
||||
echo "${name}"
|
||||
done
|
||||
case "${action}" in
|
||||
"list")
|
||||
if ! locale; then
|
||||
|
@ -927,7 +924,12 @@ spcd_txt_locale() {
|
|||
"LC_NUMERIC") regex="^\(decimal\|thousands\|grouping\)" ;;
|
||||
"LC_TIME") regex="^\(day\|mon\)" ;;
|
||||
# LC_COLLATE
|
||||
"LC_MONETARY") regex="^\(int_curr\|currency\|mon_\)" ;;
|
||||
"LC_MONETARY")
|
||||
case "${SPCD_OS_ID}" in
|
||||
"${SPCD_OS_ALPINE}") ;;
|
||||
*) regex="^\(int_curr\|currency\|mon_\)" ;;
|
||||
esac
|
||||
;;
|
||||
"LC_MESSAGES") regex="^\(yes\|no\)" ;;
|
||||
"LC_PAPER") regex="^\(height\|width\)" ;;
|
||||
"LC_NAME") regex="^name_m" ;;
|
||||
|
|
Loading…
Reference in a new issue