-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
FIXED #83. Updates for appveyor and fix to Windows issue
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -104,6 +104,11 @@ class GemUtils { | |
project.logger.debug "Gem installation: Working around bug in jruby 1.7.14" | ||
environment HOME : project.gradle.gradleUserHomeDir.absolutePath | ||
} | ||
|
||
// Workaround for FFI bug that is seen on some Windows environments | ||
if(System.getProperty('os.name').toLowerCase().startsWith('windows')) { | ||
environment 'TMP' : System.env.TMP, 'TEMP' : System.env.TEMP | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
ysb33r
Author
Contributor
|
||
} | ||
} | ||
} | ||
} | ||
|
1 comment
on commit 3147226
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
THat will be a second-round fix as some refactoring will need to be done at the same time
Isn't this redundant. I believe that
check
invokestest
(not that it really matters).