Skip to content

Commit 46f2af0

Browse files
committed
ci: remove excessive logging
1 parent 107baff commit 46f2af0

2 files changed

Lines changed: 2 additions & 8 deletions

File tree

.circleci/github_token

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Salted__�IO��c*c|�B+ �է�x��ل��@h�3���Zٹ�'��O�=��I�Td��K��
1+
Salted__z�����"B��Y��|�ۍ�V�QֳUzW�/G��R �e}j�% ���<%������

scripts/snapshots.ts

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -32,18 +32,12 @@ function _copy(from: string, to: string) {
3232

3333

3434
function _exec(command: string, args: string[], opts: { cwd?: string }, logger: logging.Logger) {
35-
const { stdout, stderr, status, error } = spawnSync(command, args, { ...opts });
35+
const { status, error } = spawnSync(command, args, { ...opts });
3636

37-
if (stderr.length) {
38-
logger.error(stderr.toString());
39-
}
4037
if (status != 0) {
4138
logger.fatal(error.message);
4239
throw error;
4340
}
44-
if (stdout.length) {
45-
logger.info(stdout.toString());
46-
}
4741
}
4842

4943

0 commit comments

Comments
 (0)