Browse code

Fixing installer issue not copying the initrd.

This seems like from merge conflict was not resolved correctly.

Mahmoud Bassiouny authored on 2015/07/29 05:59:33
Showing 1 changed files
... ...
@@ -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