Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
Ziwi01 committed Feb 24, 2024
2 parents ebdf784 + ff1096f commit 5f14983
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ansible/roles/config/tasks/git.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
vars:
app: git
source_template: gitconfig.j2
target_file: "{{ ansible_env.HOME }}/.gitconfig.j2"
target_file: "{{ ansible_env.HOME }}/.gitconfig"
ansible.builtin.include_role:
name: common
tasks_from: config_file.yml
2 changes: 1 addition & 1 deletion ansible/roles/software/tasks/neovim.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
vars:
app: neovim
repo: neovim/neovim
version_query: curl -s https://api.github.com/repos/neovim/neovim/releases/latest | grep -oP 'NVIM v([0-9]*\.[0-9]*\.[0-9])\\n' | grep -Eo '[0-9]*\.[0-9]*\.[0-9]'
version_query: curl -s https://api.github.com/repos/neovim/neovim/releases/latest | jq .tag_name | tr -d '"' | tr -d 'v'
github_uri: "v{{ neovim_version }}/nvim.appimage"
ansible.builtin.include_role:
name: common
Expand Down

0 comments on commit 5f14983

Please sign in to comment.