From f848a2770e9a63075a8a1ce80f422839fb1e8a46 Mon Sep 17 00:00:00 2001 From: Tony Blyler Date: Mon, 2 Oct 2023 16:34:53 -0400 Subject: [PATCH] Fix `mawk` issue with `upgrade_system` --- chezmoi/dot_zshrc.d/executable_upgrade_system.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chezmoi/dot_zshrc.d/executable_upgrade_system.sh b/chezmoi/dot_zshrc.d/executable_upgrade_system.sh index 1ce0e5e..6d948f2 100644 --- a/chezmoi/dot_zshrc.d/executable_upgrade_system.sh +++ b/chezmoi/dot_zshrc.d/executable_upgrade_system.sh @@ -48,7 +48,7 @@ upgrade_system() { } installed_version = $2 - "asdf latest " package | getline + ("asdf latest " package) | getline latest_version = $0 printf package"\t"installed_version"\t"latest_version"\t" if(installed_version == latest_version) {