From 113c0c095e1e7a4a6f8a678d11d67f35221b23ca Mon Sep 17 00:00:00 2001 From: Cori Hudson Date: Fri, 21 Oct 2022 15:27:34 -0400 Subject: [PATCH] fix: add missing stdout --- scripts/tx-push-help.js | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/tx-push-help.js b/scripts/tx-push-help.js index d167aaad..7109b699 100755 --- a/scripts/tx-push-help.js +++ b/scripts/tx-push-help.js @@ -63,6 +63,7 @@ const txPushResource = async (name, articles, type) => { } // file not found - create it, but also give message + process.stdout.write(`Transifex Resource not found, creating: ${name}\n`); if (err.statusCode === 404) { await txCreateResource(TX_PROJECT, resourceData); }