diff options
author | Trygve Laugstøl <trygvis@inamo.no> | 2013-01-27 15:00:27 +0100 |
---|---|---|
committer | Trygve Laugstøl <trygvis@inamo.no> | 2013-01-27 15:00:27 +0100 |
commit | e1daac32c5b7ca0d902c16135d361aa5303f5124 (patch) | |
tree | 3ebe514ae823d23b26c96d8d2db9c6b97e191de4 /libexec/app-cat-conf | |
parent | 11c930f71db58201994265b71a8f76187f1dbda1 (diff) | |
download | app.sh-e1daac32c5b7ca0d902c16135d361aa5303f5124.tar.gz app.sh-e1daac32c5b7ca0d902c16135d361aa5303f5124.tar.bz2 app.sh-e1daac32c5b7ca0d902c16135d361aa5303f5124.tar.xz app.sh-e1daac32c5b7ca0d902c16135d361aa5303f5124.zip |
o Creating an initial version of install-file.
Diffstat (limited to 'libexec/app-cat-conf')
-rwxr-xr-x | libexec/app-cat-conf | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libexec/app-cat-conf b/libexec/app-cat-conf index 5da435e..5b1c614 100755 --- a/libexec/app-cat-conf +++ b/libexec/app-cat-conf @@ -38,6 +38,13 @@ fi APPSH_DEFAULT_CONFIG=${APPSH_DEFAULT_CONFIG-$APPSH_HOME/lib/default-config} +# TODO: find config files in the paths above $file's paths and perhaps /etc/appsh/config + +if [[ ! -r $file ]] +then + fatal "No such file: $file" +fi + # The awk script makes sure each key only appears once cat "$file" "$APPSH_DEFAULT_CONFIG" | \ sed -n -e "$filter" | \ |