Remove "--verbose" from yarn commands

This apparently gets passed to the subcommand, which may not
support a "--verbose" argument.

Change-Id: I8326403ea01f0121f6ff14c10d2cd1e4e7ca7c70
This commit is contained in:
James E. Blair 2019-02-08 14:23:01 -08:00
parent dd8c88354e
commit 54dd1db16e
1 changed files with 2 additions and 2 deletions

View File

@ -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: