From 932ce488b4493488b9fdfc838824ad76442ccb9a Mon Sep 17 00:00:00 2001 From: 10sr <8slashes+git@gmail.com> Date: Fri, 18 Jan 2013 14:38:07 +0900 Subject: [PATCH] do not die when tmux command failed --- tmux.conf.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tmux.conf.pl b/tmux.conf.pl index 025f8d8..4c3e920 100755 --- a/tmux.conf.pl +++ b/tmux.conf.pl @@ -19,7 +19,7 @@ sub tmux { push(@command, @_); # print "@command, \n"; system(@command) == 0 - or die "system @command failed: $?"; + or warn "system @command failed: $?"; } sub set {