diff options
author | Florian Dold <florian@dold.me> | 2021-08-04 22:32:23 +0200 |
---|---|---|
committer | Florian Dold <florian@dold.me> | 2021-08-04 22:32:23 +0200 |
commit | 3ca05c090637b02bf751e448daf874f6acea44b0 (patch) | |
tree | adafb2990f81f8548eb8f9085279ecc2b234d187 | |
parent | 04e7315d4d1b51af434b68e1269cb25a505b6e45 (diff) |
linting
-rw-r--r-- | packages/taler-wallet-cli/src/lint.ts | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/packages/taler-wallet-cli/src/lint.ts b/packages/taler-wallet-cli/src/lint.ts index 7f7cb2dc3..22d08bb0f 100644 --- a/packages/taler-wallet-cli/src/lint.ts +++ b/packages/taler-wallet-cli/src/lint.ts @@ -103,7 +103,9 @@ export async function sh( } }); proc.on("exit", (code, signal) => { - console.log(`child process exited (${code} / ${signal})`); + if (code != 0 && context.verbose) { + console.log(`child process exited (${code} / ${signal})`); + } const bOut = Buffer.concat(stdoutChunks).toString("utf-8"); const bErr = Buffer.concat(stderrChunks).toString("utf-8"); resolve({ @@ -387,7 +389,7 @@ export async function checkExchangeHttpd( if (!resp) { console.log( - "error: request to /keys timed out." + + "error: request to /keys timed out. " + "Make sure to sign and upload denomination and signing keys " + "with taler-exchange-offline.", ); |