mirror of
https://github.com/freedomofpress/dangerzone.git
synced 2025-04-28 09:52:37 +02:00
Implicitly run doit with poetry run
Implicitly run `doit` with `poetry run`, else `poetry env remove --all` will remove the calling Python interpreter.
This commit is contained in:
parent
e0b10c5e40
commit
0b3bf89d5b
1 changed files with 4 additions and 5 deletions
9
Makefile
9
Makefile
|
@ -54,22 +54,21 @@ Dockerfile: Dockerfile.env Dockerfile.in
|
|||
poetry-install:
|
||||
poetry install
|
||||
|
||||
|
||||
.PHONY: build-clean
|
||||
build-clean:
|
||||
doit clean
|
||||
poetry run doit clean
|
||||
|
||||
.PHONY: build-macos-intel
|
||||
build-macos-intel: build-clean poetry-install
|
||||
doit -n 8
|
||||
poetry run doit -n 8
|
||||
|
||||
.PHONY: build-macos-arm
|
||||
build-macos-arm: build-clean poetry-install
|
||||
doit -n 8 macos_build_dmg
|
||||
poetry run doit -n 8 macos_build_dmg
|
||||
|
||||
.PHONY: build-linux
|
||||
build-linux: build-clean poetry-install
|
||||
doit -n 8 fedora_rpm debian_deb
|
||||
poetry run doit -n 8 fedora_rpm debian_deb
|
||||
|
||||
.PHONY: regenerate-reference-pdfs
|
||||
regenerate-reference-pdfs:
|
||||
|
|
Loading…
Reference in a new issue