From 9ffbb39c332053d764a6d1382acd5ea11c5c62c7 Mon Sep 17 00:00:00 2001 From: Benjamin Lupton Date: Fri, 1 Sep 2023 15:34:16 +0800 Subject: [PATCH] expand-path: check if echo-wait will fix no output failure https://github.com/bevry/dorothy/actions/runs/6046665433/job/16408640477 --- commands/expand-path | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/expand-path b/commands/expand-path index e3dddb5f1..b4ec89a8f 100755 --- a/commands/expand-path +++ b/commands/expand-path @@ -6,9 +6,9 @@ function expand_path() ( # using zsh then bash, works around macos which has old bash, but new zsh # so this is needed so setup-paths-commands can do its thing if type -P zsh &>/dev/null; then - expand-path-zsh "$@" 2>/dev/null | echo-trim-empty-lines + expand-path-zsh "$@" 2>/dev/null | echo-wait | echo-trim-empty-lines else - expand-path-bash "$@" 2>/dev/null | echo-trim-empty-lines + expand-path-bash "$@" 2>/dev/null | echo-wait | echo-trim-empty-lines fi )