Skip to content

Commit

Permalink
Fix for QEMU under windows post install
Browse files Browse the repository at this point in the history
  • Loading branch information
mbusb committed Apr 23, 2017
1 parent e73e882 commit 9005fb3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/qemu.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ def on_Qemu_Boot_usb_Click(self):
disk_number = self.get_physical_disk_number(qemu_usb_disk)
parent_dir = os.getcwd()
os.chdir(resource_path(os.path.join("data", "tools", "qemu")))
cmd = qemu + ' -L . -boot c' + ram + ' -hda //./PhysicalDrive' + disk_number
cmd = quote(qemu) + ' -L . -boot c' + ram + ' -hda //./PhysicalDrive' + disk_number

try:
log("Executing ==> " + cmd)
Expand Down

0 comments on commit 9005fb3

Please sign in to comment.