diff options
author | Arthur Zamarin <arthurzam@gentoo.org> | 2022-09-03 14:45:40 +0300 |
---|---|---|
committer | Arthur Zamarin <arthurzam@gentoo.org> | 2022-09-12 22:14:31 +0300 |
commit | 56323cb8fa8dd874eb6284aba75f055610d2fb04 (patch) | |
tree | ab5c231444040e834c95b41dbcdcb6ec7dafc6d9 /eclass | |
parent | vdr-plugin-2.eclass: fix UnquotedVariable (diff) | |
download | gentoo-56323cb8fa8dd874eb6284aba75f055610d2fb04.tar.gz gentoo-56323cb8fa8dd874eb6284aba75f055610d2fb04.tar.bz2 gentoo-56323cb8fa8dd874eb6284aba75f055610d2fb04.zip |
webapp.eclass: fix UnquotedVariable of D
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/webapp.eclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/webapp.eclass b/eclass/webapp.eclass index 1efe4e66b6a9..3bc177dc3e78 100644 --- a/eclass/webapp.eclass +++ b/eclass/webapp.eclass @@ -201,7 +201,7 @@ webapp_configfile() { my_file="$(webapp_strip_cwd "${my_file}")" elog "(config) ${my_file}" - echo "${my_file}" >> ${D}/${WA_CONFIGLIST} + echo "${my_file}" >> "${D}/${WA_CONFIGLIST}" done } |