From 68153edad1a48d3d82370138a41714c675b82758 Mon Sep 17 00:00:00 2001 From: Jeff Geerling Date: Sun, 12 Oct 2014 18:39:33 -0400 Subject: [PATCH] Don't fail when .bash_profile doesn't exist. --- tasks/dotfiles.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/tasks/dotfiles.yml b/tasks/dotfiles.yml index 62a6cde..28c1b80 100644 --- a/tasks/dotfiles.yml +++ b/tasks/dotfiles.yml @@ -9,6 +9,7 @@ - name: Check if .bash_profile is a link. shell: ls -F ~/.bash_profile register: is_link + failed_when: false changed_when: false - name: Remove current .bash_profile file if necessary.