Fix gclient_util after depot_tools changes (fixes issue #2736)
This commit is contained in:
parent
91f48c5588
commit
cfb4309479
|
@ -36,7 +36,8 @@ def RunAction(dir, command):
|
||||||
command[0] = sys.executable
|
command[0] = sys.executable
|
||||||
|
|
||||||
try:
|
try:
|
||||||
gclient_utils.CheckCallAndFilterAndHeader(command, cwd=dir, always=True)
|
gclient_utils.CheckCallAndFilter(
|
||||||
|
command, cwd=dir, always_show_header=True, print_stdout=True)
|
||||||
except gclient_utils.Error, e:
|
except gclient_utils.Error, e:
|
||||||
# Use a discrete exit status code of 2 to indicate that a hook action
|
# Use a discrete exit status code of 2 to indicate that a hook action
|
||||||
# failed. Users of this script may wish to treat hook action failures
|
# failed. Users of this script may wish to treat hook action failures
|
||||||
|
|
Loading…
Reference in New Issue