]> git.sur5r.net Git - i3/i3/commitdiff
lib/SocketActivation: use single quotes (for consistency)
authorMichael Stapelberg <michael@stapelberg.de>
Mon, 7 Nov 2011 20:54:33 +0000 (20:54 +0000)
committerMichael Stapelberg <michael@stapelberg.de>
Mon, 7 Nov 2011 20:54:33 +0000 (20:54 +0000)
testcases/lib/SocketActivation.pm

index 4da2029c4017a05f2d4911c3e02178db10debf00..47a709d59ef013f712851239851aafa46b48864e 100644 (file)
@@ -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;