fix: Correct echo placement after installing Fabric binary

This commit is contained in:
Peter Wood
2025-11-29 09:52:32 -05:00
parent fa44ab2e45
commit 645d10d548

View File

@@ -291,7 +291,8 @@ for pkg in "${special_installs[@]}"; do
# Download and install the latest Fabric binary for Linux AMD64 # 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 curl -L https://github.com/danielmiessler/fabric/releases/latest/download/fabric-linux-amd64 -o /tmp/fabric
chmod +x /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 # Verify installation
if fabric --version; then if fabric --version; then