forked from ungleich-public/cdist
Change from cat a variable to echo a variable
This commit is contained in:
parent
4f2d529085
commit
40d19a6bbb
1 changed files with 1 additions and 1 deletions
|
@ -31,6 +31,6 @@ echo "$prefix" > "$block"
|
||||||
if [ "$text" = "-" ]; then
|
if [ "$text" = "-" ]; then
|
||||||
cat "$__object/stdin" >> "$block"
|
cat "$__object/stdin" >> "$block"
|
||||||
else
|
else
|
||||||
cat "$text" >> "$block"
|
echo "$text" >> "$block"
|
||||||
fi
|
fi
|
||||||
echo "$suffix" >> "$block"
|
echo "$suffix" >> "$block"
|
||||||
|
|
Loading…
Reference in a new issue