Skip to content

Commit

Permalink
Minor release 3.9.1 (#47)
Browse files Browse the repository at this point in the history
  • Loading branch information
axlbonnet authored Sep 4, 2023
2 parents df1e336 + ced522d commit 953e274
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<groupId>fr.insalyon.creatis</groupId>
<artifactId>gasw-dirac-plugin</artifactId>
<version>3.9.0</version>
<version>3.9.1</version>
<packaging>jar</packaging>

<name>GASW-Dirac-Plugin</name>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -141,6 +141,11 @@ public void run() {
while ((s = br.readLine()) != null) {
cout += s + "\n";
try {
if (s.startsWith("<==")) {
// dirac 8 output starts with <=====8.0.24=====>
// we must ignore that
continue;
}
String id = s.substring(s.lastIndexOf("=")
+ 2, s.length()).trim();

Expand Down

0 comments on commit 953e274

Please sign in to comment.