From c75cc525f7fb76945347d71216b815e72b8eba9a Mon Sep 17 00:00:00 2001 From: Michael Stapelberg Date: Mon, 7 Nov 2011 20:54:33 +0000 Subject: [PATCH] lib/SocketActivation: use single quotes (for consistency) --- testcases/lib/SocketActivation.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testcases/lib/SocketActivation.pm b/testcases/lib/SocketActivation.pm index 4da2029c..47a709d5 100644 --- a/testcases/lib/SocketActivation.pm +++ b/testcases/lib/SocketActivation.pm @@ -90,7 +90,7 @@ sub activate_i3 { my $cmd = "exec $i3cmd -c $args{configfile} >>$args{logpath} 2>&1"; # We need to use the shell due to using output redirections. - exec "/bin/sh", '-c', $cmd; + exec '/bin/sh', '-c', $cmd; # if we are still here, i3 could not be found or exec failed. bail out. exit 1;