Skip to content

Commit 79929ef

Browse files
committed
Fixed position of a comment in the use script
1 parent bec0d78 commit 79929ef

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

use

+2-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ download() {
3333
echo "Unable to get tbls version." >&2
3434
exit 1
3535
}
36-
curl `if [ -f "$TBLS_ARCHIVE" ]; then echo -z "$TBLS_ARCHIVE"; fi` \ # Skip downloading if the newest file was downloaded before
36+
# Skip downloading if the newest file was downloaded before
37+
curl `if [ -f "$TBLS_ARCHIVE" ]; then echo -z "$TBLS_ARCHIVE"; fi` \
3738
-s -L -o "$TBLS_ARCHIVE" \
3839
"${TBLS_RELEASES_URL}/download/${TBLS_VERSION}/tbls_${TBLS_VERSION}_${TBLS_GOOS}_${TBLS_ARCH}.${TBLS_EXT}"
3940
}

0 commit comments

Comments
 (0)