From c5ed649d38adab3af64beaf680a68ed0b803b28d Mon Sep 17 00:00:00 2001 From: druckdev <63563978+druckdev@users.noreply.github.com> Date: Tue, 15 Sep 2020 03:44:10 +0200 Subject: [PATCH] Change return code of dotbot installation command The build step should not skip silently when make is not an available command. --- meta/install.conf.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/install.conf.yaml b/meta/install.conf.yaml index 4538baa..bd0d7c2 100644 --- a/meta/install.conf.yaml +++ b/meta/install.conf.yaml @@ -15,7 +15,7 @@ stdout: true stderr: true - - command: /bin/sh -c '! command -v make || { cd .config/zsh/plugins/stderred && make; }' + command: command -v make && cd .config/zsh/plugins/stderred && make description: Building stderred stdout: true stderr: true