added trailing slashes for folders name

This commit is contained in:
aminnairi
2024-11-30 19:00:01 +01:00
parent 086f85aab1
commit d7054e01a1
@@ -2,7 +2,7 @@
- name: Clone the repository - name: Clone the repository
ansible.builtin.git: ansible.builtin.git:
repo: https://github.com/aminnairi/markdown-table-align repo: https://github.com/aminnairi/markdown-table-align
dest: /$HOME/Documents/git/github.com/aminnairi/markdown-table-align dest: /$HOME/Documents/git/github.com/aminnairi/markdown-table-align/
register: git_clone_result register: git_clone_result
- name: Install Deno - name: Install Deno
@@ -12,7 +12,7 @@
- name: Compile the binary - name: Compile the binary
ansible.builtin.command: ansible.builtin.command:
chdir: /$HOME/Documents/git/github.com/aminnairi/markdown-table-align chdir: /$HOME/Documents/git/github.com/aminnairi/markdown-table-align/
cmd: deno compile index.ts cmd: deno compile index.ts
when: git_clone_result.changed when: git_clone_result.changed
register: compile_the_binary register: compile_the_binary
@@ -20,7 +20,7 @@
- name: Copy the binary - name: Copy the binary
ansible.builtin.copy: ansible.builtin.copy:
src: /$HOME/Documents/git/github.com/aminnairi/markdown-table-align/markdown-table-align src: /$HOME/Documents/git/github.com/aminnairi/markdown-table-align/markdown-table-align
dest: /$HOME/.local/bin dest: /$HOME/.local/bin/
when: compile_the_binary.changed when: compile_the_binary.changed
- name: Remove the binary - name: Remove the binary