diff options
| author | Ahmed Abdelhalim <[email protected]> | 2025-11-10 11:44:08 +0100 |
|---|---|---|
| committer | Ahmed Abdelhalim <[email protected]> | 2025-11-10 11:44:08 +0100 |
| commit | 60f92a26d2a8bc706ad8a1b9afe2453ea528b355 (patch) | |
| tree | 31062c053b31e600998cf375c5cceac871068c89 /roles/dotfiles | |
| parent | 72f14a15b69d771a61c28f281940a6f0a7f56f5a (diff) | |
Refactor vimrc to accept custom setup script
Diffstat (limited to 'roles/dotfiles')
| -rw-r--r-- | roles/dotfiles/tasks/main.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/roles/dotfiles/tasks/main.yml b/roles/dotfiles/tasks/main.yml index 51b2e817..d962dbbe 100644 --- a/roles/dotfiles/tasks/main.yml +++ b/roles/dotfiles/tasks/main.yml @@ -6,10 +6,10 @@ clone: true update: false single_branch: true - version: main + version: "main" - name: "Setup dotfiles" ansible.builtin.shell: cmd: "{{ dotfiles_setup_script }}" - executable: /bin/bash + executable: "/bin/bash" creates: "{{ ansible_env.HOME }}/.bash_profile" |
