Browse Source

win/msi: make msi build work when spaces are present in the path

v0.9.12-release
Bert Belder 12 years ago
parent
commit
890dc2eeb1
  1. 4
      tools/msvs/msi/nodemsi.wixproj

4
tools/msvs/msi/nodemsi.wixproj

@ -62,7 +62,7 @@
</HeatDirectory>
</Target>
<PropertyGroup>
<PostBuildEvent>move !(TargetPath) $(TargetDir)\$(TargetFileName)
move !(TargetPdbPath) $(TargetDir)\$(TargetPdbName)</PostBuildEvent>
<PostBuildEvent>move "!(TargetPath)" "$(TargetDir)\$(TargetFileName)"
move "!(TargetPdbPath)" "$(TargetDir)\$(TargetPdbName)"</PostBuildEvent>
</PropertyGroup>
</Project>
Loading…
Cancel
Save