Skip to content

Commit 915666b

Browse files
committed
Proper building on win. Igblast should be installed using NCBI installer
1 parent a4461ce commit 915666b

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

build.gradle

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
import org.apache.tools.ant.taskdefs.condition.Os
2+
13
apply plugin: 'java'
24
apply plugin: 'groovy'
35
apply plugin: 'application'
@@ -29,5 +31,7 @@ dependencies {
2931
}
3032

3133
test {
32-
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+
}
3337
}

0 commit comments

Comments
 (0)