Makefile: System_setup specific drtrun param

This commit is contained in:
Jinming Wu, Patrick 2021-07-07 21:38:43 +08:00 committed by Jean-Baptiste Lallement
parent 653d015d2d
commit 486e05eeb1
1 changed files with 3 additions and 2 deletions

View File

@ -7,6 +7,7 @@ PYTHONPATH=$(shell pwd):$(shell pwd)/probert:$(shell pwd)/curtin
PROBERTDIR=./probert
PROBERT_REPO=https://github.com/canonical/probert
DRYRUN?=--dry-run --bootloader uefi --machine-config examples/simple.json
SYSTEM_SETUP_DRYRUN?=--dry-run
export PYTHONPATH
CWD := $(shell pwd)
@ -49,10 +50,10 @@ dryrun-server:
$(PYTHON) -m subiquity.cmd.server $(DRYRUN)
dryrun-system-setup:
$(PYTHON) -m system_setup.cmd.tui $(DRYRUN)
$(PYTHON) -m system_setup.cmd.tui $(SYSTEM_SETUP_DRYRUN)
dryrun-system-setup-server:
$(PYTHON) -m system_setup.cmd.server $(DRYRUN)
$(PYTHON) -m system_setup.cmd.server $(SYSTEM_SETUP_DRYRUN)
lint: flake8