diff options
author | Trygve Laugstøl <trygvis@inamo.no> | 2012-10-16 23:57:41 +0200 |
---|---|---|
committer | Trygve Laugstøl <trygvis@inamo.no> | 2012-10-16 23:57:41 +0200 |
commit | a3ce3f7eabbb746aa9ced430bcd55391742c738b (patch) | |
tree | e4dcab1586b725508a57bfce83f3067a95b26a89 /test/data/app-a/root | |
parent | f563dc165ce1ee8747eea647231bf8e295d8af3f (diff) | |
download | app.sh-a3ce3f7eabbb746aa9ced430bcd55391742c738b.tar.gz app.sh-a3ce3f7eabbb746aa9ced430bcd55391742c738b.tar.bz2 app.sh-a3ce3f7eabbb746aa9ced430bcd55391742c738b.tar.xz app.sh-a3ce3f7eabbb746aa9ced430bcd55391742c738b.zip |
o Improved completion (again).
o Consistent usage of APPSH_HOME and BASEDIR.
Diffstat (limited to 'test/data/app-a/root')
-rw-r--r-- | test/data/app-a/root/bin/app-a | 9 | ||||
-rw-r--r-- | test/data/app-a/root/etc/app.conf | 1 |
2 files changed, 10 insertions, 0 deletions
diff --git a/test/data/app-a/root/bin/app-a b/test/data/app-a/root/bin/app-a index e69de29..7d251a0 100644 --- a/test/data/app-a/root/bin/app-a +++ b/test/data/app-a/root/bin/app-a @@ -0,0 +1,9 @@ +#!/bin/bash + +me=`basename $0` + +for i in {1..10} +do + echo "#$i: `date`" >> $me.log + sleep 1 +done diff --git a/test/data/app-a/root/etc/app.conf b/test/data/app-a/root/etc/app.conf new file mode 100644 index 0000000..d2c3f48 --- /dev/null +++ b/test/data/app-a/root/etc/app.conf @@ -0,0 +1 @@ +app.bin=bin/app-a |