File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -5,15 +5,15 @@ alpine="$(
55 bashbrew cat --format ' {{ .TagEntry.Tags | join "\n" }}' https://github.com/docker-library/official-images/raw/HEAD/library/alpine:latest \
66 | grep -E ' ^[0-9]+[.][0-9]+$'
77) "
8- [ " $( wc -l <<< " $alpine" ) " = 1 ]
8+ [ " $( wc -l <<< " $alpine" | tr -d ' [:space:] ' ) " = 1 ]
99export alpine
1010
1111debian=" $(
1212 bashbrew cat --format ' {{ .TagEntry.Tags | join "\n" }}' https://github.com/docker-library/official-images/raw/HEAD/library/debian:latest \
1313 | grep -vE ' ^latest$|[0-9.-]' \
1414 | head -1
1515) "
16- [ " $( wc -l <<< " $debian" ) " = 1 ]
16+ [ " $( wc -l <<< " $debian" | tr -d ' [:space:] ' ) " = 1 ]
1717export debian
1818
1919gosus=" $(
@@ -121,6 +121,10 @@ packages="$(
121121) "
122122
123123for version in " ${versions[@]} " ; do
124+ if [ " $( echo $version | grep ' stackbrew' ) " ]; then
125+ continue
126+ fi
127+
124128 export version rcVersion=" ${version% -rc} "
125129
126130 doc=" $(
You can’t perform that action at this time.
0 commit comments