diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml deleted file mode 100644 index ff145b7..0000000 --- a/.github/workflows/lint.yml +++ /dev/null @@ -1,24 +0,0 @@ -name: Lint - -on: - push: - branches: - - main - pull_request: - -jobs: - lint: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: asdf-vm/actions/install@v3 - - run: scripts/lint.bash - - actionlint: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - - name: Check workflow files - uses: docker://rhysd/actionlint:1.6.23 - with: - args: -color diff --git a/bin/download b/bin/download index c3f0a86..924ddb1 100755 --- a/bin/download +++ b/bin/download @@ -23,9 +23,9 @@ download_release "$ASDF_INSTALL_VERSION" "$release_file" # Extract contents of tar.gz file into the download directory if [[ $ext_name == ".zip" ]]; then - unzip -o "$release_file" -d "$ASDF_DOWNLOAD_PATH" || fail "Could not extract $release_file" + unzip -o "$release_file" -d "$ASDF_DOWNLOAD_PATH" || fail "Could not extract $release_file" else - tar -xzf "$release_file" -C "$ASDF_DOWNLOAD_PATH" || fail "Could not extract $release_file" + tar -xzf "$release_file" -C "$ASDF_DOWNLOAD_PATH" || fail "Could not extract $release_file" fi # Remove the tar.gz file since we don't need to keep it