Skip to content

Commit

Permalink
Merge pull request bytedance#54 from kaedea/develop
Browse files Browse the repository at this point in the history
Fix jarsign sign condition revert mistake
  • Loading branch information
JingYeoh authored Jun 21, 2021
2 parents ebcf844 + 9a19f75 commit e8f3a5d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public void sign(File toBeSigned, JarSigner.Signature signature) throws IOExcept
throw new RuntimeException(
String.format("%s failed with exit code %d: \n %s",
jarSignerExecutable, exitCode,
errors.trim().isEmpty() ? errors : output
errors.trim().isEmpty() ? output : errors
)
);
}
Expand Down

0 comments on commit e8f3a5d

Please sign in to comment.