lib/SocketActivation: use single quotes (for consistency)

This commit is contained in:
Michael Stapelberg 2011-11-07 20:54:33 +00:00
parent 1c0d69d4e6
commit c75cc525f7
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ sub activate_i3 {
my $cmd = "exec $i3cmd -c $args{configfile} >>$args{logpath} 2>&1"; my $cmd = "exec $i3cmd -c $args{configfile} >>$args{logpath} 2>&1";
# We need to use the shell due to using output redirections. # 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. # if we are still here, i3 could not be found or exec failed. bail out.
exit 1; exit 1;