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:
parent
dd8c88354e
commit
54dd1db16e
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user