Skip to content

Commit e365316

Browse files
committed
fix: fetch-prebuild.js URL was not getting built correctly, and version bump
1 parent f7209a7 commit e365316

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/node/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/node/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@lockdown-systems/ringrtc",
3-
"version": "2.63.0-audiosink.1",
3+
"version": "2.63.0-audiosink.2",
44
"repository": {
55
"type": "git",
66
"url": "git+https://github.com/lockdown-systems/ringrtc.git",

src/node/scripts/fetch-prebuild.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ if (process.env.npm_package_json) {
3737
VERSION = process.env.npm_package_version;
3838
}
3939

40-
const PREBUILD_URL = config.prebuildUrl.replace(
40+
const PREBUILD_URL = config.prebuildUrl.replaceAll(
4141
'${npm_package_version}', // eslint-disable-line no-template-curly-in-string
4242
VERSION
4343
);

0 commit comments

Comments
 (0)