Compare commits

..

2 Commits

Author SHA1 Message Date
a9599c0b61 chore: update changelog
All checks were successful
Cadoles/mktools/pipeline/head This commit looks good
2023-11-15 11:28:01 +01:00
6028362078 fix(install): correctly inject tools dir into gitignore 2023-11-15 11:28:01 +01:00

View File

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