Skip to content

Commit

Permalink
appveyor build
Browse files Browse the repository at this point in the history
  • Loading branch information
arakis committed Nov 1, 2019
1 parent 147ace2 commit 604aea6
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/Abanu.Tools.Lib/Env.cs
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,13 @@ public static string Get(string name)
value = "${ABANU_PROJDIR}/external/MOSA-Project";
break;
case "MOSA_TOOLSDIR":
value = "${MOSA_PROJDIR}/tools";
value = "${MOSA_PROJDIR}/Tools";
break;
case "qemu":
value = "${MOSA_TOOLSDIR}/qemu/qemu-system-x86_64.exe";
if (Environment.OSVersion.Platform == PlatformID.Unix)
value = "qemu-system-x86_64";
else
value = "${MOSA_TOOLSDIR}/qemu/qemu-system-x86_64.exe";
break;
case "gdb":
value = @"gdb.exe";
Expand Down

0 comments on commit 604aea6

Please sign in to comment.