Really use the same flags

This commit is contained in:
patrick brisbin 2018-03-01 12:43:53 -05:00
parent f595aed116
commit 8cf5fd1761

View File

@ -3,7 +3,9 @@ all: setup build test lint
.PHONY: setup
setup:
stack setup $(STACK_ARGUMENTS)
stack build $(STACK_ARGUMENTS) --dependencies-only --test --no-run-tests
stack build $(STACK_ARGUMENTS) \
--flag yesod-auth-oauth2:example \
--dependencies-only --test --no-run-tests
stack install $(STACK_ARGUMENTS) hlint weeder
.PHONY: build