Skip to content

Commit

Permalink
fix: replace all occurances of version in manifest url
Browse files Browse the repository at this point in the history
  • Loading branch information
kosmoz authored and pmig committed Jul 31, 2024
1 parent d306e18 commit 99f0c79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/package/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ export default class Package extends Command {
newAppVersion = latestRelease;
newPackageManifestAvailable = true;
this.log(`new release on GitHub: ${latestRelease}`);
plainManifest.url = manifestUrl.raw.replace(manifestUrl.semVer.raw, latestRelease.raw);
plainManifest.url = manifestUrl.raw.replaceAll(manifestUrl.semVer.format(), latestRelease.format());
} else {
this.log('no newer manifest release found');
}
Expand Down

0 comments on commit 99f0c79

Please sign in to comment.