Change return code of dotbot installation command

The build step should not skip silently when make is not an available
command.
This commit is contained in:
2020-09-15 03:44:10 +02:00
parent b444a942c2
commit c5ed649d38

View File

@@ -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