Skip to content

Commit 28c75be

Browse files
committed
Remove curl progress meter
1 parent e630493 commit 28c75be

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

entrypoint.sh

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,11 +98,13 @@ options="--http1.1 --fail-with-body"
9898

9999
if [ "$verbose" = true ]; then
100100
options="$options -v"
101-
# The -s disables the progress meter, as well as error messages.
102-
# We want Curl to report errors, which we reenable with -S
103101
options="$options -sS"
104102
elif [ "$silent" = true ]; then
105103
options="$options -s"
104+
else
105+
# The -s disables the progress meter, as well as error messages.
106+
# We want Curl to report errors, which we reenable with -S
107+
options="$options -sS"
106108
fi
107109

108110
if [ "$verify_ssl" = false ]; then

0 commit comments

Comments
 (0)