mirror of
https://github.com/m-housh/dotfiles.git
synced 2026-02-14 06:12:34 +00:00
7 lines
196 B
Bash
Executable File
7 lines
196 B
Bash
Executable File
#!/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 "$@"
|
|
}
|