From 40eab379c419d5c8ed809e68ca4cfaef301bc607 Mon Sep 17 00:00:00 2001 From: Jared Lunde Date: Sun, 29 Sep 2024 12:18:55 -0700 Subject: [PATCH] lint is dumb --- .github/workflows/lint.yml | 24 ------------------------ bin/download | 4 ++-- 2 files changed, 2 insertions(+), 26 deletions(-) delete mode 100644 .github/workflows/lint.yml 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