mirror of
https://github.com/dart-lang/sdk
synced 2024-11-05 18:22:09 +00:00
Disable taskkill failure when killing dart processes on windows.
There is an outstanding issue with pub hanging and being unkillable on windows. Make the taskkill step pass on windows, even if there are dart processes, until we fix this issue. BUG=https://github.com/dart-lang/sdk/issues/24086 R=kustermann@google.com Review URL: https://codereview.chromium.org/1582773002 .
This commit is contained in:
parent
8741a8dcda
commit
cd21da1d98
1 changed files with 5 additions and 1 deletions
|
@ -206,7 +206,11 @@ def Main():
|
|||
options = GetOptions()
|
||||
status = 0
|
||||
if options.kill_dart:
|
||||
status += KillDart()
|
||||
if os_name == "win32":
|
||||
# TODO(24086): Add result of KillDart into status once pub hang is fixed.
|
||||
KillDart()
|
||||
else:
|
||||
status += KillDart()
|
||||
if options.kill_fletch:
|
||||
status += KillFletch()
|
||||
if options.kill_vc:
|
||||
|
|
Loading…
Reference in a new issue