Compare commits

..

2 Commits

Author SHA1 Message Date
1445f3f197 chore: update changelog
All checks were successful
Cadoles/mktools/pipeline/head This commit looks good
2023-11-15 11:10:46 +01:00
dd31e0acd6 fix(install): correctly inject tools dir into gitignore
Some checks reported errors
Cadoles/mktools/pipeline/head Something is wrong with the build of this commit
2023-11-15 11:10:36 +01:00

View File

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