pass -t /target to the system-install command

(oops)
This commit is contained in:
Michael Hudson-Doyle 2021-12-02 12:47:02 +13:00
parent 00a870e054
commit 8d96e1b8ed
1 changed files with 2 additions and 1 deletions

View File

@ -226,7 +226,8 @@ class InstallController(SubiquityController):
description="installing {package}") description="installing {package}")
async def install_package(self, *, context, package): async def install_package(self, *, context, package):
await run_curtin_command( 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") @with_context(description="restoring apt configuration")
async def restore_apt_config(self, context): async def restore_apt_config(self, context):