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

+ 1
- 1
bin/mksheet View File

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

+ 1
- 1
bin/se View File

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