Skip to content

Commit

Permalink
fixed bug which caused the build to throw a stackoverflow exception.
Browse files Browse the repository at this point in the history
  • Loading branch information
immeraufdemhund committed Mar 7, 2017
1 parent 7ef31db commit ef719d5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>com.robertsnyder.pickles</groupId>
<artifactId>pickles-notifier</artifactId>
<version>1.0.1-SNAPSHOT</version>
<version>1.0.1</version>
<packaging>hpi</packaging>

<parent>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/hudson/plugins/pickles/PicklesNotifier.java
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public boolean perform(AbstractBuild<?, ?> build, Launcher launcher, BuildListen
if(errorCode != 0){
listener.error("[pickles] Pickles did not successfully complete. Error Code:" + errorCode);
}
return super.perform(build, launcher, listener);
return true;
}

@Extension @Symbol("pickles")
Expand Down

0 comments on commit ef719d5

Please sign in to comment.