From 4d5c38ca1d9da44e017930ae2345e2b85a1ebdb2 Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Sat, 20 Nov 2021 14:09:23 -0700 Subject: [PATCH] add ubuntu support in install script --- run_once_install.sh.tmpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run_once_install.sh.tmpl b/run_once_install.sh.tmpl index 251bed6..582aca5 100644 --- a/run_once_install.sh.tmpl +++ b/run_once_install.sh.tmpl @@ -4,7 +4,7 @@ echo "Running installation script\n" {{- if eq .chezmoi.osRelease.id "alpine" }} apk update apk add zsh neovim tmux bat perl -{{- else if eq .chezmoi.osRelease.id "debian" }} +{{- else if (or (eq .chezmoi.osRelease.id "debian") (eq .chezmoi.osRelease.id "ubuntu")) }} sudo apt update sudo apt install zsh neovim tmux perl -y {{- end }}