From 7bca1569e517a4be41e2b030d85126e68007bd82 Mon Sep 17 00:00:00 2001 From: Alexander Thomas Date: Tue, 12 Sep 2017 17:20:31 +0000 Subject: [PATCH] Correct case of vctip executable Bug: Change-Id: I89fa5a8ccdff94d2034ee6366b6c0261d9a2e99e Reviewed-on: https://dart-review.googlesource.com/5260 Reviewed-by: William Hesse Commit-Queue: Alexander Thomas --- tools/task_kill.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/task_kill.py b/tools/task_kill.py index 50b3ec6e043..c620c5d98ea 100755 --- a/tools/task_kill.py +++ b/tools/task_kill.py @@ -33,7 +33,7 @@ EXECUTABLE_NAMES = { 'gen_snapshot': 'gen_snapshot.exe', 'git': 'git.exe', 'iexplore': 'iexplore.exe', - 'VCTIP': 'VCTIP.EXE', + 'vctip': 'vctip.exe', 'mspdbsrv': 'mspdbsrv.exe', }, 'linux': { @@ -234,7 +234,7 @@ def KillVCSystems(): return status def KillVSBuild(): - status = Kill('VCTIP') + status = Kill('vctip') status += Kill('mspdbsrv') return status