Skip to content

Commit

Permalink
Fix .bat syntax
Browse files Browse the repository at this point in the history
¯\_(ツ)_/¯
  • Loading branch information
AltGr committed Oct 18, 2019
1 parent d7f1172 commit 196cec2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions windows/make_msi.bat
@@ -1,8 +1,8 @@
PATH=$PATH;"C:\Program Files (x86)\WiX Toolset v3.10\bin"

for %i in (data bin doc lib share) do heat.exe dir ocaml-top/%i -srd -dr %i -cg %i -gg -var var.%iDir -out %i.wxs
for %%i in (data bin doc lib share) do heat.exe dir ocaml-top/%%i -srd -dr %%i -cg %%i -gg -var var.%%iDir -out %%i.wxs

for %i in (data bin doc lib share) do candle.exe -d"%iDir=ocaml-top\\%i" -out %i.wixobj %i.wxs
for %%i in (data bin doc lib share) do candle.exe -d"%%iDir=ocaml-top\\%%i" -out %%i.wixobj %%i.wxs

candle.exe -out ocaml-top.wixobj ocaml-top.wxs

Expand Down

0 comments on commit 196cec2

Please sign in to comment.