diff options
Diffstat (limited to 'Meta/run.sh')
-rwxr-xr-x | Meta/run.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Meta/run.sh b/Meta/run.sh index 1e8a00a2be..95f935de89 100755 --- a/Meta/run.sh +++ b/Meta/run.sh @@ -44,6 +44,8 @@ SERENITY_RUN="${SERENITY_RUN:-$1}" if [ -z "$SERENITY_QEMU_BIN" ]; then if command -v wslpath >/dev/null; then + # Some Windows systems don't have reg.exe's directory on the PATH by default. + PATH=$PATH:/mnt/c/Windows/System32 QEMU_INSTALL_DIR=$(reg.exe query 'HKLM\Software\QEMU' /v Install_Dir /t REG_SZ | grep '^ Install_Dir' | sed 's/ / /g' | cut -f4- -d' ') if [ -z "$QEMU_INSTALL_DIR" ]; then if [ "$KVM_SUPPORT" -eq "0" ]; then |