From 206bddcbf3f6f1b4073cfbb19e5db41ecd5c21bd Mon Sep 17 00:00:00 2001 From: Daniel Jankowski Date: Sat, 10 Aug 2024 15:36:27 +0200 Subject: [PATCH] Install fastlane via bundler and use binstubs --- bin/download | 14 ++++---------- lib/utils.bash | 1 + 2 files changed, 5 insertions(+), 10 deletions(-) diff --git a/bin/download b/bin/download index 80abb60..5790aec 100755 --- a/bin/download +++ b/bin/download @@ -10,13 +10,7 @@ source "${plugin_dir}/lib/utils.bash" mkdir -p "$ASDF_DOWNLOAD_PATH" -release_file="$ASDF_DOWNLOAD_PATH/$TOOL_NAME-$ASDF_INSTALL_VERSION.tar.gz" - -# Download tar.gz file to the download directory -download_release "$ASDF_INSTALL_VERSION" "$release_file" - -# Extract contents of tar.gz file into the download directory -tar -xzf "$release_file" -C "$ASDF_DOWNLOAD_PATH" --strip-components=1 || fail "Could not extract $release_file" - -# Remove the tar.gz file since we don't need to keep it -rm "$release_file" +cat > "$ASDF_DOWNLOAD_PATH/Gemfile" <