Adds update dots script and fixes some typos

This commit is contained in:
2024-03-26 14:27:01 -04:00
parent a696e4e658
commit 1ae41a0fac
3 changed files with 8 additions and 1 deletions

View File

@@ -0,0 +1,6 @@
#!/bin/zsh
function update-dots() {
find "$ANSIBLE_MACOS_PLAYBOOK_DIR" -type f -maxdepth 1 -mindepth 1 -name justfile \
| xargs -I {} just --justfile {} run-playbook --tags dotfiles "$@"
}