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 a4461ce commit 915666bCopy full SHA for 915666b
build.gradle
@@ -1,3 +1,5 @@
1
+import org.apache.tools.ant.taskdefs.condition.Os
2
+
3
apply plugin: 'java'
4
apply plugin: 'groovy'
5
apply plugin: 'application'
@@ -29,5 +31,7 @@ dependencies {
29
31
}
30
32
33
test {
- environment "PATH", "$System.env.PATH:/usr/local/bin/:/usr/local/ncbi/igblast/bin/"
34
+ if (!Os.isFamily(Os.FAMILY_WINDOWS)) {
35
+ environment "PATH", "$System.env.PATH:/usr/local/bin/:/usr/local/ncbi/igblast/bin/"
36
+ }
37
0 commit comments