Skip to content

Commit fd2e164

Browse files
committed
Revert "entrypoint: Remove unnecessary use of an extended glob."
This reverts commit 0d72546. The extended glob matched when the _entire_ value was numeric, whereas the pattern matches if it _starts_ with a number. Fixes: #433 Fixes: #435
1 parent cd7692a commit fd2e164

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

entrypoint.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ setConfigurationValue() {
8989
[Tt][Rr][Uu][Ee]|[Ff][Aa][Ll][Ss][Ee]|[Nn]one)
9090
TYPE="bool"
9191
;;
92-
[1-9][0-9]*)
92+
+([0-9]))
9393
TYPE="integer"
9494
;;
9595
[\[\(]*[\]\)])

0 commit comments

Comments
 (0)