We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 54b3dc7 commit 67d17e5Copy full SHA for 67d17e5
1 file changed
src/osinstall.py
@@ -122,7 +122,7 @@ def install(self, boot_obj_path):
122
base = os.path.join(mountpoint, "vendorfw")
123
logging.info(f"Firmware -> {base}")
124
os.makedirs(base, exist_ok=True)
125
- shutil.copy(self.firmware_package.path, os.path.join(base, "firmware.tar"))
+ shutil.copy(self.firmware_package.tar_path, os.path.join(base, "firmware.tar"))
126
shutil.copy(self.firmware_package.cpio_path, os.path.join(base, "firmware.cpio"))
127
self.firmware_package.save_manifest(os.path.join(base, "manifest.txt"))
128
if part.get("copy_installer_data", False):
0 commit comments