We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3297fa7 commit a5a4828Copy full SHA for a5a4828
app/scripts/build-protos.js
@@ -21,7 +21,7 @@ const protoSources = async () => {
21
const goModPath = join(appPath, '..', 'go.mod');
22
const goModSource = (await fs.readFile(goModPath)).toString();
23
24
- const lndVersion = ['', 'v0.13.0-beta.rc3']; // TODO revert: goModSource.match(LND_VERSION_PATTERN);
+ const lndVersion = goModSource.match(LND_VERSION_PATTERN);
25
if (!lndVersion || lndVersion.length !== 2) {
26
throw new Error(`go.mod did not match pattern ${LND_VERSION_PATTERN}`);
27
}
0 commit comments