diff options
author | Paul Oliver <contact@pauloliver.dev> | 2025-08-08 22:23:25 +0200 |
---|---|---|
committer | Paul Oliver <contact@pauloliver.dev> | 2025-08-17 01:05:09 +0000 |
commit | b679114531a5054487123252b6e3a9d22b7c27a7 (patch) | |
tree | ceaf4ac5fc53f416f0d6f845f73b09f98ab1d722 /Makefile | |
parent | 8fe62292f18f4577303a868a8557b0486b218bcb (diff) |
Simplifies cabal files
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -resolver = $(shell curl -s https://www.stackage.org/download/snapshots.json | yq .nightly) +resolver = $(shell curl -s https://www.stackage.org/download/snapshots.json | yq .lts) packages = $(shell ls -dQm hsm-*) build: @@ -11,4 +11,4 @@ exec: stack exec $(exec) update: - yq -iSY '.resolver=$(resolver) | .packages=[$(packages)]' stack.yaml + yq -i '.resolver="$(resolver)" | .packages=[$(packages)]' stack.yaml |