Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion bin/provision
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,11 @@ set -euo pipefail
# Find the playbook - it's in .config/dotfiles/ relative to the bin directory
SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
REPO_ROOT="$(dirname "$SCRIPT_DIR")"
PLAYBOOK="$REPO_ROOT/.config/dotfiles/playbook.yml"
DOTFILES_CONFIG="$REPO_ROOT/.config/dotfiles"
PLAYBOOK="$DOTFILES_CONFIG/playbook.yml"

# Point Ansible to our config file (inventory, fact settings, etc.)
export ANSIBLE_CONFIG="$DOTFILES_CONFIG/ansible.cfg"

# Ensure uv is available, install if missing
if ! command -v uv &>/dev/null; then
Expand Down
Loading