Skip to content

Commit

Permalink
Merge pull request #169 from interestincode/patch-1
Browse files Browse the repository at this point in the history
Fix Windows msi installer PATH entry
  • Loading branch information
muuki88 committed Feb 15, 2014
2 parents 332787c + aea1a47 commit 7fe518c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ object WixHelper {
val homeEnvVar = archetypes.JavaAppBatScript.makeEnvFriendlyName(name) +"_HOME"
val pathAddition =
if(dir.isEmpty) "%"+homeEnvVar+"%"
else "[INSTALLDIR]\\"+dir.replaceAll("\\/", "\\\\")
else "[INSTALLDIR]"+dir.replaceAll("\\/", "\\\\")
val id = cleanStringForId(dir).takeRight(65) + "PathC"
val guid = makeGUID
val xml =
Expand Down

0 comments on commit 7fe518c

Please sign in to comment.