Skip to content

Commit

Permalink
Merge pull request #1136 from mwhudson/lp-1952969
Browse files Browse the repository at this point in the history
pass -t /target to the system-install command
  • Loading branch information
mwhudson authored Dec 2, 2021
2 parents 00a870e + 8d96e1b commit 97149e0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion subiquity/server/controllers/install.py
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,8 @@ async def get_target_packages(self, context):
description="installing {package}")
async def install_package(self, *, context, package):
await run_curtin_command(
self.app, context, 'system-install', '--', package)
self.app, context, 'system-install', '-t', self.tpath(),
'--', package)

@with_context(description="restoring apt configuration")
async def restore_apt_config(self, context):
Expand Down

0 comments on commit 97149e0

Please sign in to comment.