Browse Source

Add commas to ease extending homogenous

Alois Mahdal 8 years ago
parent
commit
6c42fdb713
3 changed files with 4 additions and 4 deletions
  1. 2
    2
      bin/mkexec
  2. 1
    1
      bin/mksheet
  3. 1
    1
      bin/se

+ 2
- 2
bin/mkexec View File

@@ -46,7 +46,7 @@ my $bangs = {
46 46
     bash => '/bin/bash',
47 47
     sed  => `which sed`,
48 48
     bc   => `which bc`,
49
-    exp  => `which expect` . " -f"
49
+    exp  => `which expect` . " -f",
50 50
 };
51 51
 
52 52
 my $templates = {
@@ -66,7 +66,7 @@ my $templates = {
66 66
         'ffoo'  => "\n. \"\$(ffoom path)\" || exit 3\n\n"
67 67
                    . "ffoo import pretty\n\n"
68 68
                    . "FFOO_DEBUG=true",
69
-    }
69
+    },
70 70
 };
71 71
 
72 72
 my $editors = [ qw/ vim editor / ];

+ 1
- 1
bin/mksheet View File

@@ -35,7 +35,7 @@ GetOptions(
35 35
     "input=s"   => \$LOGFILE,
36 36
     "storage=s" => \$STORAGE,
37 37
     "prefix=s"  => \$PREFIX,
38
-    "subset=s"  => \@SUBSETS
38
+    "subset=s"  => \@SUBSETS,
39 39
 );
40 40
 
41 41
 unless ($LOGFILE) {

+ 1
- 1
bin/se View File

@@ -25,7 +25,7 @@ GetOptions(
25 25
     'lines|n=i'     => \$lines,
26 26
     'direction|d=s' => \$direction,
27 27
     'help|?|h'    => \$help,
28
-    'man'       => \$man
28
+    'man'       => \$man,
29 29
 ) or pod2usage(2);
30 30
 pod2usage(1) if $help;
31 31
 pod2usage(-exitstatus => 0, -verbose => 2) if $man;