mirror of
https://github.com/aminnairi/dotfiles.git
synced 2026-09-14 14:32:13 +02:00
added trailing slashes for folders name
This commit is contained in:
@@ -2,7 +2,7 @@
|
||||
- name: Clone the repository
|
||||
ansible.builtin.git:
|
||||
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
|
||||
|
||||
- name: Install Deno
|
||||
@@ -12,7 +12,7 @@
|
||||
|
||||
- name: Compile the binary
|
||||
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
|
||||
when: git_clone_result.changed
|
||||
register: compile_the_binary
|
||||
@@ -20,7 +20,7 @@
|
||||
- name: Copy the binary
|
||||
ansible.builtin.copy:
|
||||
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
|
||||
|
||||
- name: Remove the binary
|
||||
|
||||
Reference in New Issue
Block a user