From 4db42556a3a4a322e5c379ee7895dd911ee31caf Mon Sep 17 00:00:00 2001 From: Simon Guest Date: Mon, 3 Jun 2024 16:00:36 +1200 Subject: [PATCH] Fix Nu download URL --- .github/workflows/test-suite.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-suite.yml b/.github/workflows/test-suite.yml index 6fabf75..e56d9d6 100644 --- a/.github/workflows/test-suite.yml +++ b/.github/workflows/test-suite.yml @@ -12,7 +12,7 @@ jobs: uses: actions/checkout@v4 - name: Download Nushell $NU_VERSION run: | - curl -L https://github.com/nushell/nushell/releases/download/${NU_VERSION}/nu-${NU_VERSION}-x86_64-linux-gnu-full.tar.gz | tar xzf - + curl -L https://github.com/nushell/nushell/releases/download/${NU_VERSION}/nu-${NU_VERSION}-x86_64-unknown-linux-gnu.tar.gz | tar xzf - - name: Version Check run: | ./nu-${NU_VERSION}-x86_64-linux-gnu-full/nu --version