Skip to content

Commit e8ea32b

Browse files
committed
fix: fix start command -imageRoot args
1 parent e76dfe3 commit e8ea32b

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.changeset/honest-knives-rest.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@arkts/image-manager": patch
3+
---
4+
5+
fix: fix start command -imageRoot args

src/images/local-image.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ export class LocalImageImpl extends ImageBase<LocalImage.Stringifiable> implemen
8080
'-path',
8181
`"${this.getImageManager().getOptions().deployedPath.replace(/"/g, '\\"')}"`,
8282
'-imageRoot',
83-
`"${config.path.replace(/"/g, '\\"')}"`,
83+
`"${this.getImageManager().getOptions().imageBasePath.replace(/"/g, '\\"')}"`,
8484
].join(' ')
8585
return `${executablePath} ${args}`
8686
}

0 commit comments

Comments
 (0)