cabalism / updo

A style of maintaining and upgrading Haskell projects
Mozilla Public License 2.0
8 stars 0 forks source link

`sha256map` generation should be opt-in #12

Open philderbeast opened 10 months ago

philderbeast commented 10 months ago

Project generation creates the haskell.nix sha256map even though this is not an explicit goal (only projects is) as seen with https://github.com/up-do/dex-lang/commit/062c46aa8365ee5e1d36e387ae2a64c5a0cc6f53

include project-versions.mk
include updo/Makefile

.PHONY: all
all: projects

.DEFAULT_GOAL := all
$ make -f project-files.mk

$ git ls-files --others --exclude-standard
ghc-8.10.7.sha256map.nix
philderbeast commented 10 months ago

A clean with make -f project-files.mk clean gets rid of this generated file.