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 848d8de commit c414238Copy full SHA for c414238
src/storage.ts
@@ -142,7 +142,9 @@ export class Storage {
142
this.output.info("Got server version", buildInfo.version);
143
const parsedVersion = semver.parse(buildInfo.version);
144
if (!parsedVersion) {
145
- throw new Error(`Got invalid version from deployment: ${buildInfo.version}`)
+ throw new Error(
146
+ `Got invalid version from deployment: ${buildInfo.version}`,
147
+ );
148
}
149
150
// Check if there is an existing binary and whether it looks valid. If it
0 commit comments