From 7fc078ffc07ab1ade07ba49c6f0d40df5157d598 Mon Sep 17 00:00:00 2001 From: Andrew Coleman Date: Wed, 8 Sep 2021 07:55:41 -0400 Subject: [PATCH] install tilt --- cloud-tools.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/cloud-tools.yml b/cloud-tools.yml index 12a4f42..29c1919 100644 --- a/cloud-tools.yml +++ b/cloud-tools.yml @@ -166,3 +166,10 @@ args: chdir: "{{ ansible_env.HOME }}/go/src/github.com/samuelkarp/runj" creates: "/usr/local/bin/runj" + +- name: install tilt linux + when: ansible_facts['system']|lower == 'linux' + shell: curl -fsSL https://raw.githubusercontent.com/tilt-dev/tilt/master/scripts/install.sh | bash + args: + warn: False + creates: "{{ ansible_env.HOME }}/.local/bin/tilt"