diff options
author | Trygve Laugstøl <trygvis@inamo.no> | 2013-01-27 12:58:25 +0100 |
---|---|---|
committer | Trygve Laugstøl <trygvis@inamo.no> | 2013-01-27 12:58:25 +0100 |
commit | 11c930f71db58201994265b71a8f76187f1dbda1 (patch) | |
tree | b0f90a4d631b946e4cb3d3755e9da1e3198aee71 /lib/header | |
parent | 6076c500405b7759845496dce6d3b9e1dc619cca (diff) | |
download | app.sh-11c930f71db58201994265b71a8f76187f1dbda1.tar.gz app.sh-11c930f71db58201994265b71a8f76187f1dbda1.tar.bz2 app.sh-11c930f71db58201994265b71a8f76187f1dbda1.tar.xz app.sh-11c930f71db58201994265b71a8f76187f1dbda1.zip |
o Adding a common header to all scripts.
o Disabling un-used tests and apps for now.
Diffstat (limited to 'lib/header')
-rw-r--r-- | lib/header | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/header b/lib/header new file mode 100644 index 0000000..805e06e --- /dev/null +++ b/lib/header @@ -0,0 +1,8 @@ +#!/bin/bash + +set -e +set -u + +APPSH_HOME=$(cd $(dirname "$0")/.. && pwd) + +. $APPSH_HOME/lib/common |