diff options
author | Trygve Laugstøl <trygvis@inamo.no> | 2013-04-21 11:10:37 +0200 |
---|---|---|
committer | Trygve Laugstøl <trygvis@inamo.no> | 2013-04-21 14:58:23 +0200 |
commit | 079a49eaaa5a6bacca3181671abd8ebb72015fd1 (patch) | |
tree | fd956e35d17bf41f173d02613c0c31a350291d89 /bin/app-conf | |
parent | c8a9de50c8f7254c61888982ae270bf71c3f8506 (diff) | |
download | app.sh-079a49eaaa5a6bacca3181671abd8ebb72015fd1.tar.gz app.sh-079a49eaaa5a6bacca3181671abd8ebb72015fd1.tar.bz2 app.sh-079a49eaaa5a6bacca3181671abd8ebb72015fd1.tar.xz app.sh-079a49eaaa5a6bacca3181671abd8ebb72015fd1.zip |
o Allowing the 'app' wrapper to run apps from libexec too.
Diffstat (limited to 'bin/app-conf')
-rwxr-xr-x | bin/app-conf | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bin/app-conf b/bin/app-conf index 2681f59..fde357f 100755 --- a/bin/app-conf +++ b/bin/app-conf @@ -65,6 +65,7 @@ conf_import() { local dst=$1; shift local src=$1; shift + echo "Importing config from $src" app-cat-conf -f "$src" -f "$dst" > "$dst.tmp" mv "$dst.tmp" "$dst" } |