We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
use
1 parent bec0d78 commit 79929efCopy full SHA for 79929ef
use
@@ -33,7 +33,8 @@ download() {
33
echo "Unable to get tbls version." >&2
34
exit 1
35
}
36
- curl `if [ -f "$TBLS_ARCHIVE" ]; then echo -z "$TBLS_ARCHIVE"; fi` \ # Skip downloading if the newest file was downloaded before
+ # Skip downloading if the newest file was downloaded before
37
+ curl `if [ -f "$TBLS_ARCHIVE" ]; then echo -z "$TBLS_ARCHIVE"; fi` \
38
-s -L -o "$TBLS_ARCHIVE" \
39
"${TBLS_RELEASES_URL}/download/${TBLS_VERSION}/tbls_${TBLS_VERSION}_${TBLS_GOOS}_${TBLS_ARCH}.${TBLS_EXT}"
40
0 commit comments