-
Notifications
You must be signed in to change notification settings - Fork 644
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix handling of Run Commands from properties. #684
Conversation
Signed-off-by: Steve Newson <Steven.Newson@gmail.com>
Current coverage is 49.20% (diff: 100%)@@ master #684 diff @@
==========================================
Files 124 124
Lines 6357 6353 -4
Methods 0 0
Messages 0 0
Branches 1080 1079 -1
==========================================
Hits 3126 3126
+ Misses 2961 2959 -2
+ Partials 270 268 -2
|
Signed-off-by: Steve Newson <Steven.Newson@gmail.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me and thanks for spotting these issues. If you could update the snapshot repo in the pom.xml, this would be awesome. After that I can merge the PR in.
<id>sonatype-nexus-staging</id> | ||
<name>Nexus Release Repository</name> | ||
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> | ||
<id>starling-central</id> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
guess this slipped in accidentally. Could you please revert this ?
if (cmds == null) { | ||
return null; | ||
} | ||
return ret; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Really stupid issue here. Thanks for spotting this !
Sure |
This reverts commit b49f0d0.
I've reverted the erroneous change. |
thanks a lot, lgtm [merge] |
Fix handling of Run Commands from properties.
Allow users to source the run commands from properties.
Signed-off-by: Steve Newson Steven.Newson@gmail.com