Skip to content

Commit 6f2fb36

Browse files
committed
Update version label flag, as it was not backwards compatible with new version of the graph CLI
1 parent db6c601 commit 6f2fb36

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "messari-subgraph-cli",
3-
"version": "0.1.48",
3+
"version": "0.1.49",
44
"description": "A CLI for Messari Subgraph development.",
55
"types": "build/types/types.d.ts",
66
"bin": {

src/command-helpers/build/scriptGenerator.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ export class ScriptGenerator {
287287
if (this.token) {
288288
deploymentScript = `graph deploy --auth=${this.token} --product subgraph-studio ${location} --versionLabel ${version}`
289289
} else {
290-
deploymentScript = `graph deploy --product subgraph-studio ${location} --versionLabel ${version}`
290+
deploymentScript = `graph deploy --product subgraph-studio ${location} --version-label ${version}`
291291
}
292292
break
293293
case 'hosted-service':

0 commit comments

Comments
 (0)