From 645d10d54841fa3b8eb43935943737728b4b2221 Mon Sep 17 00:00:00 2001 From: Peter Wood Date: Sat, 29 Nov 2025 09:52:32 -0500 Subject: [PATCH] fix: Correct echo placement after installing Fabric binary --- setup/setup.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup/setup.sh b/setup/setup.sh index e0a9e60..307646a 100755 --- a/setup/setup.sh +++ b/setup/setup.sh @@ -291,7 +291,8 @@ for pkg in "${special_installs[@]}"; do # Download and install the latest Fabric binary for Linux AMD64 curl -L https://github.com/danielmiessler/fabric/releases/latest/download/fabric-linux-amd64 -o /tmp/fabric chmod +x /tmp/fabric - sudo mv /tmp/fabric /usr/local/bin/fabric echo -e "${GREEN}Fabric binary installed successfully!${NC}" + sudo mv /tmp/fabric /usr/local/bin/fabric + echo -e "${GREEN}Fabric binary installed successfully!${NC}" # Verify installation if fabric --version; then