diff options
| -rw-r--r-- | distrib.yml | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/distrib.yml b/distrib.yml index d10b1f7..d41dca6 100644 --- a/distrib.yml +++ b/distrib.yml @@ -58,7 +58,7 @@        run_once: true      - name: "Copy dotfiles.tar.xz to remote"        copy: -        src: "dotfiles.tar.xz" +        src: "~/dotfiles.tar.xz"          dest: "~/dotfiles.tar.xz"          mode: "0640"        tags: @@ -67,7 +67,7 @@      - name: "Unpack dotfiles.tar.xz"        unarchive:          dest: "~/" -        src: "dotfiles.tar.xz" +        src: "~/dotfiles.tar.xz"          remote_src: "yes"          list_files: "yes"        tags: | 
