From 58efeb8a20613e211eab6830d0a5ff1c344d3725 Mon Sep 17 00:00:00 2001 From: Kevin Sawicki Date: Sat, 5 Jul 2014 10:45:48 -0700 Subject: [PATCH] Force kill on Windows --- build/Gruntfile.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/Gruntfile.coffee b/build/Gruntfile.coffee index 878086c43..bc3a685a4 100644 --- a/build/Gruntfile.coffee +++ b/build/Gruntfile.coffee @@ -47,7 +47,7 @@ module.exports = (grunt) -> contentsDir = shellAppDir appDir = path.join(shellAppDir, 'resources', 'app') installDir ?= path.join(process.env.ProgramFiles, appName) - killCommand = 'taskkill /IM atom.exe' + killCommand = 'taskkill /FIM atom.exe' else if process.platform is 'darwin' contentsDir = path.join(shellAppDir, 'Contents') appDir = path.join(contentsDir, 'Resources', 'app')