Ensure to expose output of failed commands

This commit is contained in:
Mariusz Nowak 2019-06-28 10:02:30 +02:00
parent 3bd0231417
commit cab2ffabcb
No known key found for this signature in database
GPG Key ID: B1FBDA8A182B03F2
2 changed files with 2 additions and 2 deletions

View File

@ -3,7 +3,7 @@
const fs = require('fs');
const path = require('path');
const fse = require('fs-extra');
const { execSync } = require('child_process');
const { execSync } = require('../utils/child-process');
const { serverlessExec } = require('../utils/misc');
const { getTmpDirPath } = require('../utils/fs');

View File

@ -2,7 +2,7 @@
const path = require('path');
const fse = require('fs-extra');
const { execSync } = require('child_process');
const { execSync } = require('../utils/child-process');
const { serverlessExec } = require('../utils/misc');
const { getTmpDirPath, listZipFiles } = require('../utils/fs');