From aaaedcffafa3e0b141b08cd7a6c9a12d00cd42e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cristian=20Cezar=20Mois=C3=A9s?= Date: Tue, 24 Mar 2026 20:58:22 -0300 Subject: [PATCH] Updated: Install.sh --- README.md | 6 ++---- install.sh | 19 ++++++++----------- 2 files changed, 10 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index a28fef9..e75e2bf 100644 --- a/README.md +++ b/README.md @@ -26,14 +26,12 @@ Zupt compresses and encrypts backup archives. LZ77+Huffman compression, AES-256- ## Quick Start ```bash -# Fast installation +# ๐Ÿš€ Fast installation curl -fsSL https://short.securityops.co/zupt | bash ``` +## Build & Install ``` -# Build & Install - -```bash git clone https://github.com/cristiancmoises/zupt.git && \ cd zupt && \ make && \ diff --git a/install.sh b/install.sh index 7bbfd08..84fd93d 100644 --- a/install.sh +++ b/install.sh @@ -1,30 +1,27 @@ #!/usr/bin/env bash -# Fast Installer - For GNU+Linux +# Fast Installer for Zupt - GNU/Linux set -e -echo "๐Ÿ”ง Installing zupt..." +echo "๐Ÿ”ง Installing Zupt..." # Create temporary directory TMP_DIR=$(mktemp -d) -# Clone repo +# Clone and build git clone https://github.com/cristiancmoises/zupt.git "$TMP_DIR/zupt" - cd "$TMP_DIR/zupt" -# Build make clean make -# Install safely with proper permissions -sudo install -m 755 zupt /usr/local/bin/ +# Install +sudo make install -echo "โœ… Installed to /usr/local/bin/zupt" +echo "โœ… Zupt successfully installed to /usr/local/bin/zupt" +echo "๐Ÿ”’ You can now run: zupt" # Cleanup cd ~ rm -rf "$TMP_DIR" - -echo "๐Ÿงน Cleanup done" -echo "๐Ÿ”’ You can now run: zupt" +echo "๐Ÿงน Cleanup completed"