source: trunk/packages/invirt-base/files/lib/init/gen-files.sh @ 2977

Last change on this file since 2977 was 2977, checked in by gdb, 14 years ago

Added an invirt mako render script.

File size: 370 bytes
Line 
1# Generates files from templates.
2# Files should be named in an array variable GEN_FILES.
3# If BASH_VERSION is null or unset, accepts only one file.
4
5if [ $BASH_VERSION ]; then
6  gen_files()
7  {
8    for f in "${GEN_FILES[@]}"; do
9      invirt-mako-render "$f".mako >"$f"
10    done
11  }
12else
13  gen_files()
14  {
15     invirt-mako-render "$GEN_FILES".mako >"$GEN_FILES"
16  }
17fi
Note: See TracBrowser for help on using the repository browser.