Skip to content

Commit

Permalink
Merge pull request #2573 from liquibase/fix-import-package-quoting
Browse files Browse the repository at this point in the history
Fix quoting for MANIFEST.MF Import-Package
  • Loading branch information
nvoxland committed Mar 10, 2022
2 parents 8f5d443 + a0ea413 commit 16b3e84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/util/ManifestReversion.java
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 16b3e84

Please sign in to comment.