From f9607852292e4ca57e71011591bd1c11a3d0bf9d Mon Sep 17 00:00:00 2001 From: Jeremy Kaplan Date: Sun, 17 Oct 2021 18:19:49 -0700 Subject: [PATCH] Split postinstall profile --- default.conf.yaml | 3 --- install | 2 +- postinstall.conf.yaml | 2 ++ 3 files changed, 3 insertions(+), 4 deletions(-) create mode 100644 postinstall.conf.yaml diff --git a/default.conf.yaml b/default.conf.yaml index c8e8d95..fdc88e1 100644 --- a/default.conf.yaml +++ b/default.conf.yaml @@ -36,6 +36,3 @@ ~/.zprofile: zsh/.zprofile ~/.zshenv: zsh/.zshenv ~/.zshrc: zsh/.zshrc - -- shell: - - ./neovim/postinstall diff --git a/install b/install index 1686a54..58e392a 100755 --- a/install +++ b/install @@ -38,7 +38,7 @@ else profiles=() fi -for conf in "${OS_NAME}" "${profiles[@]}" default; do +for conf in default "${OS_NAME}" "${profiles[@]}" postinstall; do echo "Applying config: ${conf}" load_config "${conf}${CONFIG_SUFFIX}" done diff --git a/postinstall.conf.yaml b/postinstall.conf.yaml new file mode 100644 index 0000000..0512687 --- /dev/null +++ b/postinstall.conf.yaml @@ -0,0 +1,2 @@ +- shell: + - ./neovim/postinstall