fix(install): don't use option '-e' for builtin echo #3

Open
lgourvenec wants to merge 1 commits from fix_-e_in_gitignore into master

View File

@ -20,9 +20,9 @@ main() {
if [ ! -f .gitignore ]; then
touch .gitignore
fi
grep -qFx -- "$TASKS_DIR/" .gitignore || echo -e "$TASKS_DIR/" >> .gitignore
grep -qFx -- "$TASKS_DIR/" .gitignore || echo "$TASKS_DIR/" >> .gitignore
echo "Done"
}
main
main