From b9b6969c05fe5d1dfc2687fa471190bde2a84c83 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rodrigo=20Gra=C3=A7a?= Date: Wed, 27 May 2020 10:02:31 +0100 Subject: [PATCH] =?UTF-8?q?fix:=20=F0=9F=90=9B=20failing=20test=20(execSyn?= =?UTF-8?q?c=20not=20defined)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/cli.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/cli.js b/lib/cli.js index 115c4fa5..06193bef 100644 --- a/lib/cli.js +++ b/lib/cli.js @@ -1,4 +1,4 @@ -const {spawn} = require('child_process'); +const {spawn, execSync} = require('child_process'); const fs = require('fs'); const {join} = require('path'); const shellescape = require('any-shell-escape');