Skip to content

Commit

Permalink
run formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
Azuki-bar committed May 29, 2023
1 parent a459869 commit a2ebdbf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bin/download
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ download_release "$ASDF_INSTALL_VERSION" "$release_file"

# Extract contents of gz file into the download directory
temp_dir=$(mktemp -d)
gzip -d -c "$release_file" > "$temp_dir/rye"
gzip -d -c "$release_file" >"$temp_dir/rye"
install -m 0755 "$temp_dir/rye" "$ASDF_DOWNLOAD_PATH"
rm -r "$temp_dir"

Expand Down
2 changes: 1 addition & 1 deletion lib/utils.bash
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ download_release() {
else
fail "Unsupported OS: $uname"
fi

# https://github.com/mitsuhiko/rye/releases/download/0.3.0/rye-aarch64-linux.gz
url="$GH_REPO/releases/download/${version}/${TOOL_NAME}-${arch}-${os}.gz"

Expand Down

0 comments on commit a2ebdbf

Please sign in to comment.