Skip to content

Commit 32fc123

Browse files
committed
fix: update nitro task for nitro v2.0.8
Signed-off-by: Tomás Migone <[email protected]>
1 parent 5f1a3c4 commit 32fc123

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tasks/deployment/nitro.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,7 @@ subtask(TASK_NITRO_FETCH_DEPLOYMENT_FILE, 'Fetches nitro deployment file from a
101101
.setAction(async (taskArgs) => {
102102
console.log(`Attempting to fetch deployment file from testnode...`)
103103

104-
const command =
105-
'docker exec $(docker ps -qf "name=sequencer") cat /deployment/localNetwork.json > localNetwork.json'
104+
const command = `docker exec $(docker ps -qf "name=sequencer") cat /workspace/localNetwork.json > ${taskArgs.deploymentFile}`
106105
const stdOut = execSync(command)
107106
console.log(stdOut.toString())
108107

0 commit comments

Comments
 (0)