Browse Source

Add Fastfoo template for bash

Alois Mahdal 9 years ago
parent
commit
086412c6a3
1 changed files with 5 additions and 0 deletions
  1. 5
    0
      bin/mkexec

+ 5
- 0
bin/mkexec View File

60
     pl => {
60
     pl => {
61
         ''      => "use strict;\nuse warnings;\n",
61
         ''      => "use strict;\nuse warnings;\n",
62
         test    => "use strict;\nuse warnings;\nuse Test::More;\n\n",
62
         test    => "use strict;\nuse warnings;\nuse Test::More;\n\n",
63
+    },
64
+    bash => {
65
+        'ffoo'  => "\n. \$(ffoom path) || exit 3\n\n"
66
+                   . "ffoo import pretty\n\n"
67
+                   . "FFOO_DEBUG=true",
63
     }
68
     }
64
 };
69
 };
65
 
70