From 97bc45ea0e11e82fbbccc8c920cde46864f42b9d Mon Sep 17 00:00:00 2001 From: druckdev <63563978+druckdev@users.noreply.github.com> Date: Tue, 25 Aug 2020 13:04:15 +0200 Subject: [PATCH] Build stderred on install and add output --- install.conf.yaml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/install.conf.yaml b/install.conf.yaml index 583aae6..8dc2ef7 100644 --- a/install.conf.yaml +++ b/install.conf.yaml @@ -3,6 +3,7 @@ command: git submodule update --init --recursive --jobs 8 --depth 1 2>&1 | grep "Cloning into" description: Pulling all submodules stdout: true + stderr: true - command: /bin/sh -c 'tmpd="$(mktemp -d)"; for file in .config/*; do [ ! -e "$HOME/$file" ] || mv "$HOME/$file" "$tmpd"; done; rmdir "$tmpd" 2>/dev/null && echo "Nothing to archive" || { name="existing-$(date +"%s").tar.gz"; tar czvf "$name" "$tmpd" && rm -rf "$tmpd" && echo "$name created"; }' description: Archiving all files in ~/.config before overwriting them @@ -12,6 +13,13 @@ - command: .config/zsh/plugins/fzf/install --bin description: Pulling fzf binary + stdout: true + stderr: true + - + command: /bin/sh -c '! command -v make || { cd .config/zsh/plugins/stderred && make; }' + description: Building stderred + stdout: true + stderr: true - link: ~/.Xmodmap: path: .Xmodmap