From 79929ef238e4e6a5b608c17c2522ee0bfcdb9ede Mon Sep 17 00:00:00 2001 From: Ryusuke SEKIYAMA Date: Fri, 27 Jan 2023 14:23:24 +0900 Subject: [PATCH] Fixed position of a comment in the `use` script --- use | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/use b/use index a4619c9b9..91475c495 100644 --- a/use +++ b/use @@ -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}" }