diff options
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 |