Skip to content

Commit

Permalink
Fixed position of a comment in the use script
Browse files Browse the repository at this point in the history
  • Loading branch information
rsky committed Jan 27, 2023
1 parent bec0d78 commit 79929ef
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion use
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@ download() {
echo "Unable to get tbls version." >&2
exit 1
}
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
curl `if [ -f "$TBLS_ARCHIVE" ]; then echo -z "$TBLS_ARCHIVE"; fi` \
-s -L -o "$TBLS_ARCHIVE" \
"${TBLS_RELEASES_URL}/download/${TBLS_VERSION}/tbls_${TBLS_VERSION}_${TBLS_GOOS}_${TBLS_ARCH}.${TBLS_EXT}"
}
Expand Down

0 comments on commit 79929ef

Please sign in to comment.