Skip to content

Commit

Permalink
Fix quoting for MANIFEST.MF Import-Package
Browse files Browse the repository at this point in the history
  • Loading branch information
nvoxland committed Feb 23, 2022
1 parent 06c86b4 commit a0ea413
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/util/ManifestReversion.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public static void main(String[] args) throws Exception {

final String importPackage = attributes.getValue("Import-Package");
if (importPackage != null) {
attributes.putValue("Import-Package", importPackage.replaceAll("version=\"\\[0\\.0,1\\)\"", "version=\"[" + version + ",1)"));
attributes.putValue("Import-Package", importPackage.replaceAll("version=\"\\[0\\.0,1\\)\"", "version=\"[" + version + ",1)\""));
}

final String exportPackage = attributes.getValue("Export-Package");
Expand Down

0 comments on commit a0ea413

Please sign in to comment.