]> ruderich.org/simon Gitweb - config/dotfiles.git/commitdiff
tig.pl: Use array as argument for open().
authorSimon Ruderich <simon@ruderich.org>
Sat, 16 Mar 2013 16:03:04 +0000 (17:03 +0100)
committerSimon Ruderich <simon@ruderich.org>
Sat, 16 Mar 2013 16:03:04 +0000 (17:03 +0100)
tig.pl

diff --git a/tig.pl b/tig.pl
index a11921818af301a9a26a403b35043553dae8e19a..3939deb1f5f25bfed13b957fc3fcd43caa6eb2ac 100755 (executable)
--- a/tig.pl
+++ b/tig.pl
@@ -40,8 +40,8 @@ my $format = '%x00'         # separator from --graph
            . '%an' . '%x00' # author name
            . '%s'  . '%x00' # subject
            . '%d';          # ref names
-my $cmd = "git log --all --graph --format='$format'";
-open my $fh, '-|', $cmd or die $!;
+my @cmd = ('git', 'log', '--all', '--graph', "--format=$format");
+open my $fh, '-|', @cmd or die $!;
 
 while (my $line = <$fh>) {
     # History graph line.