Fix makefile.shade

This commit is contained in:
Pranav K 2016-11-10 09:36:08 -08:00
parent af80d4493e
commit 8500226272
1 changed files with 1 additions and 1 deletions

View File

@ -16,6 +16,6 @@ var localTscExists = '${ File.Exists(localTsc) }'
var installCommand = 'install ${E("KOREBUILD_NPM_INSTALL_OPTIONS")} --prefix "${nodeDirectory}" typescript'
npm npmCommand="${installCommand}" if="!localTscExists"
@{
E("PATH", $"{nodeBin}{Path.PathSeparator}{E("PATH")}");
E("PATH", nodeBin + Path.PathSeparator + E("PATH"));
Console.WriteLine("PATH:" + E("PATH"));
}