logging stdout
This commit is contained in:
parent
fcbfe67122
commit
5765c51b2e
@ -189,21 +189,23 @@ export class LibeufinCli {
|
|||||||
}
|
}
|
||||||
|
|
||||||
async checkSandbox(): Promise<void> {
|
async checkSandbox(): Promise<void> {
|
||||||
await sh(
|
const stdout = await sh(
|
||||||
this.globalTestState,
|
this.globalTestState,
|
||||||
"libeufin-cli-checksandbox",
|
"libeufin-cli-checksandbox",
|
||||||
"libeufin-cli sandbox check",
|
"libeufin-cli sandbox check",
|
||||||
extendEnv({ LIBEUFIN_SANDBOX_URL: this.cliDetails.sandboxUrl }),
|
extendEnv({ LIBEUFIN_SANDBOX_URL: this.cliDetails.sandboxUrl }),
|
||||||
);
|
);
|
||||||
|
console.log(stdout);
|
||||||
}
|
}
|
||||||
|
|
||||||
async createEbicsHost(hostId: string): Promise<void> {
|
async createEbicsHost(hostId: string): Promise<void> {
|
||||||
await sh(
|
const stdout = await sh(
|
||||||
this.globalTestState,
|
this.globalTestState,
|
||||||
"libeufin-cli-createebicshost",
|
"libeufin-cli-createebicshost",
|
||||||
`libeufin-cli sandbox ebicshost create --host-id=${hostId}`,
|
`libeufin-cli sandbox ebicshost create --host-id=${hostId}`,
|
||||||
extendEnv({ LIBEUFIN_SANDBOX_URL: this.cliDetails.sandboxUrl }),
|
extendEnv({ LIBEUFIN_SANDBOX_URL: this.cliDetails.sandboxUrl }),
|
||||||
);
|
);
|
||||||
|
console.log(stdout);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user