From 54dd1db16e30d3285851c44065c42ed61a365280 Mon Sep 17 00:00:00 2001 From: "James E. Blair" Date: Fri, 8 Feb 2019 14:23:01 -0800 Subject: [PATCH] Remove "--verbose" from yarn commands This apparently gets passed to the subcommand, which may not support a "--verbose" argument. Change-Id: I8326403ea01f0121f6ff14c10d2cd1e4e7ca7c70 --- roles/yarn/tasks/main.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/yarn/tasks/main.yaml b/roles/yarn/tasks/main.yaml index f751cfdb8..e51187c68 100644 --- a/roles/yarn/tasks/main.yaml +++ b/roles/yarn/tasks/main.yaml @@ -5,7 +5,7 @@ - name: Run yarn lifecycle command when: yarn_command in yarn_lifecycle_phases - command: "yarn {{ yarn_command }} --verbose" + command: "yarn {{ yarn_command }}" # Need to set DISPLAY to the value that will be set when the virtual # framebuffer is set up for doing browser tests. environment: @@ -15,7 +15,7 @@ - name: Run yarn custom command when: yarn_command not in yarn_lifecycle_phases - command: "yarn run {{ yarn_command }} --verbose" + command: "yarn run {{ yarn_command }}" # Need to set DISPLAY to the value that will be set when the virtual # framebuffer is set up for doing browser tests. environment: