We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb2087f commit 9b6e531Copy full SHA for 9b6e531
src/com/inet/gradle/setup/msi/MsiBuilder.java
@@ -380,6 +380,9 @@ private File getWxsFile() {
380
private static String getToolPath( String tool ) {
381
// first check the environ variable WIX
382
String wix = System.getenv( "WIX" );
383
+ if( wix == null ) {
384
+ wix = System.getProperty( "WIX" ); // try the system property because a property can be set easer from a gradle script
385
+ }
386
if( wix != null ) {
387
File file = new File( wix );
388
file = new File( file, "bin\\" + tool );
0 commit comments