From ef634f38a43ba08477eb4a520525171d742ffa74 Mon Sep 17 00:00:00 2001 From: Sorin Ionescu Date: Sun, 31 May 2015 16:47:16 -0400 Subject: [PATCH] Replace signal TERM with KILL --- modules/prompt/functions/prompt_sorin_setup | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/prompt/functions/prompt_sorin_setup b/modules/prompt/functions/prompt_sorin_setup index a3e6745..c8fc68b 100644 --- a/modules/prompt/functions/prompt_sorin_setup +++ b/modules/prompt/functions/prompt_sorin_setup @@ -82,7 +82,7 @@ function prompt_sorin_precmd { # Kill the old process of slow commands if it is still running. if (( _prompt_sorin_precmd_async_pid > 0 )); then - kill -TERM "$_prompt_sorin_precmd_async_pid" &>/dev/null + kill -KILL "$_prompt_sorin_precmd_async_pid" &>/dev/null fi # Compute slow commands in the background.