small fixes for the update, run it with source update.sh

Signed-off-by: Uncle Stretch <uncle.stretch@ghostchain.io>
This commit is contained in:
Uncle Stretch 2025-02-07 14:06:14 +03:00
parent 38e95f58ed
commit 3e22e933ab
Signed by: str3tch
GPG Key ID: 84F3190747EE79AA

6
update.sh Normal file → Executable file
View File

@ -1,3 +1,5 @@
#!/bin/bash
echo "[+] trying to fetch main branch" echo "[+] trying to fetch main branch"
git fetch origin main git fetch origin main
@ -18,7 +20,7 @@ sudo cp target/release/ghost-eye /usr/local/bin
if ! grep -Fxq "alias ge=\"ghost-eye\"" ~/.bashrc; then if ! grep -Fxq "alias ge=\"ghost-eye\"" ~/.bashrc; then
echo "alias ge=\"ghost-eye\"" >> ~/.bashrc echo "alias ge=\"ghost-eye\"" >> ~/.bashrc
source ~/.bashrc source ~/.bashrc
echo "[+] alias ge added, type ge to run ghost-eye" echo "[+] alias 'ge' added, type 'ge' to run ghost-eye"
else else
echo "[+] alias ge already found" echo "[+] alias 'ge' already found"
fi fi