bugfix: preserve newlines

pull/7/head
Adam Veldhousen 2021-10-22 12:16:28 -05:00
parent b1860879dc
commit fa9be8cec3
Signed by: adam
GPG Key ID: 6DB29003C6DD1E4B
1 changed files with 1 additions and 1 deletions

View File

@ -40,7 +40,7 @@ files_install() {
if [[ -f "${target}" ]]; then
if [[ -z "$(cat ${target} | grep 'sourceme.sh')" ]]; then
files_debug_log "[files_install] installing myself to $target";
echo ${FILES_SOURCEME} >> ${target};
echo "${FILES_SOURCEME}" >> ${target};
fi
fi
}