Skip to content

Commit 6590226

Browse files
authored
Merge pull request #883 from Unity-Technologies/unity-master-fix-bare-minimum-runtime
Add .NET FW to beginning of path rather than end for referencing MSBuild.exe
2 parents fd2dd4c + 18b5d68 commit 6590226

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

external/buildscripts/build_unityscript_bareminimum_win.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ ()
3737
}
3838

3939
print("Using .Net framework: $netFrameworkLocation");
40-
$ENV{PATH} = "$ENV{PATH};$netFrameworkLocation";
40+
$ENV{PATH} = "$netFrameworkLocation;$ENV{PATH}";
4141
}
4242

4343
AddDotNetFolderToPath();

0 commit comments

Comments
 (0)