This seems like from merge conflict was not resolved correctly.
| ... | ... |
@@ -285,7 +285,7 @@ class Installer(object): |
| 285 | 285 |
if len(version_array) > 2: |
| 286 | 286 |
version_string = version_array[1] |
| 287 | 287 |
|
| 288 |
- process = subprocess.Popen([self.chroot_command, '-w', self.photon_root, './mkinitramfs', '-n', '/boot/initrd.img-no-kmods', '-k', version_string], stdout=self.output) |
|
| 288 |
+ process = subprocess.Popen([self.chroot_command, '-w', self.photon_root, './mkinitramfs', '-n', 'boot/initrd.img-no-kmods', '-k', version_string], stdout=self.output) |
|
| 289 | 289 |
retval = process.wait() |
| 290 | 290 |
|
| 291 | 291 |
|