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"