summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDaniel Friesel <daniel.friesel@uos.de>2021-05-20 15:24:06 +0200
committerDaniel Friesel <daniel.friesel@uos.de>2021-05-20 15:24:06 +0200
commit1f9d5a03722b4281f5c34f645bb8c8077c584803 (patch)
tree6e520fd3fa953f9eea24ccea0f673fe228e99f1f /lib
parent09d4ad7a3f6e0f511c0eb49a54a782a0f22e2bcf (diff)
multipass: "make info" now requires an app to be set
Diffstat (limited to 'lib')
-rw-r--r--lib/runner.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/runner.py b/lib/runner.py
index fe383fc..aaa3807 100644
--- a/lib/runner.py
+++ b/lib/runner.py
@@ -641,7 +641,7 @@ class Multipass:
Returns a list.
"""
- command = ["make", "arch={}".format(self.name), "info"]
+ command = ["make", "arch={}".format(self.name), "app=donothing", "info"]
command.extend(self.opts)
command.extend(opts)
logger.debug(f"Getting Info: {' '.join(command)}")