Skip to content

Commit

Permalink
Fix compiler version in upload_to_github.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasjm committed Nov 28, 2023
1 parent 246ae3f commit 23111b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions upload_to_github.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ for arg do
[ "$arg" = "--dry-run" ] && DRY_RUN=t && continue
done

BUILT=$(nix build .#ghc945-static-github --no-link --json | jq -r '.[0].outputs.out')
BUILT=$(nix build .#ghc947-static-github --no-link --json | jq -r '.[0].outputs.out')
echo "Built:"
ls -lh "$BUILT"
VERSION="$(nix eval .#ghc945-static.version --raw)"
VERSION="$(nix eval .#ghc947-static.version --raw)"
ARTIFACT_LINUX="$BUILT/rust-notebook-language-server-$VERSION-x86_64-linux"
ARTIFACT_LINUX_ARCHIVE="$ARTIFACT_LINUX.tar.gz"
Expand Down

0 comments on commit 23111b1

Please sign in to comment.