@arkts/image-manager 0.1.4 → 0.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -535,7 +535,7 @@ var LocalImageImpl = class extends ImageBase {
|
|
|
535
535
|
"-path",
|
|
536
536
|
`"${this.getImageManager().getOptions().deployedPath.replace(/"/g, "\\\"")}"`,
|
|
537
537
|
"-imageRoot",
|
|
538
|
-
`"${
|
|
538
|
+
`"${this.getImageManager().getOptions().imageBasePath.replace(/"/g, "\\\"")}"`
|
|
539
539
|
].join(" ")}`;
|
|
540
540
|
}
|
|
541
541
|
async start(deployer) {
|
package/dist/index.mjs
CHANGED
|
@@ -503,7 +503,7 @@ var LocalImageImpl = class extends ImageBase {
|
|
|
503
503
|
"-path",
|
|
504
504
|
`"${this.getImageManager().getOptions().deployedPath.replace(/"/g, "\\\"")}"`,
|
|
505
505
|
"-imageRoot",
|
|
506
|
-
`"${
|
|
506
|
+
`"${this.getImageManager().getOptions().imageBasePath.replace(/"/g, "\\\"")}"`
|
|
507
507
|
].join(" ")}`;
|
|
508
508
|
}
|
|
509
509
|
async start(deployer) {
|
package/package.json
CHANGED