Skip to content

Commit

Permalink
Proper building on win. Igblast should be installed using NCBI installer
Browse files Browse the repository at this point in the history
  • Loading branch information
mikessh committed Feb 1, 2016
1 parent a4461ce commit 915666b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import org.apache.tools.ant.taskdefs.condition.Os

apply plugin: 'java'
apply plugin: 'groovy'
apply plugin: 'application'
Expand Down Expand Up @@ -29,5 +31,7 @@ dependencies {
}

test {
environment "PATH", "$System.env.PATH:/usr/local/bin/:/usr/local/ncbi/igblast/bin/"
if (!Os.isFamily(Os.FAMILY_WINDOWS)) {
environment "PATH", "$System.env.PATH:/usr/local/bin/:/usr/local/ncbi/igblast/bin/"
}
}

0 comments on commit 915666b

Please sign in to comment.