From 0e5fb23d14bae45bf65d2022b3cee93d02aa7024 Mon Sep 17 00:00:00 2001 From: Andy Palmer Date: Tue, 16 Aug 2022 11:40:29 +0100 Subject: [PATCH] Remove --ansi flag --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 843b7d2..25febc1 100644 --- a/index.js +++ b/index.js @@ -82,7 +82,7 @@ async function dep() { let cmd = core.getInput('dep') - let p = execa.command(`php ${dep} --no-interaction --ansi -v ${cmd}`) + let p = execa.command(`php ${dep} --no-interaction -v ${cmd}`) p.stdout.pipe(process.stdout) p.stderr.pipe(process.stderr)