diff options
author | jnqnfe <jnqnfe@gmail.com> | 2014-11-22 21:20:29 +0000 |
---|---|---|
committer | Daniel Baumann <mail@daniel-baumann.ch> | 2014-12-10 07:46:29 +0100 |
commit | 7ce5cc19f8be9c795d746fc809e7a9cc0ff5ae20 (patch) | |
tree | 1d02608add4cd0aeaef76c3af5adbd0242089bea /functions | |
parent | 029072708668354e0a156b55cc68b48f35ccffee (diff) | |
download | vyos-live-build-7ce5cc19f8be9c795d746fc809e7a9cc0ff5ae20.tar.gz vyos-live-build-7ce5cc19f8be9c795d746fc809e7a9cc0ff5ae20.zip |
Fix broken calls to Get_conffiles() from Read_conffiles() and Print_conffiles() (Closes: #770645).
Diffstat (limited to 'functions')
-rwxr-xr-x | functions/conffile.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/functions/conffile.sh b/functions/conffile.sh index 136e51b2e..c4fe191b6 100755 --- a/functions/conffile.sh +++ b/functions/conffile.sh @@ -28,7 +28,7 @@ Get_conffiles () Read_conffiles () { - for CONFFILE in Get_conffiles "${@}" + for CONFFILE in $(Get_conffiles "${@}") do if [ -f "${CONFFILE}" ] then @@ -45,7 +45,7 @@ Read_conffiles () Print_conffiles () { - for CONFFILE in Get_conffiles "${@}" + for CONFFILE in $(Get_conffiles "${@}") do if [ -f "${CONFFILE}" ] then |