From 3e22e933ab23712b06394caeae89e96bae96534c Mon Sep 17 00:00:00 2001 From: Uncle Stretch Date: Fri, 7 Feb 2025 14:06:14 +0300 Subject: [PATCH] small fixes for the update, run it with source update.sh Signed-off-by: Uncle Stretch --- update.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) mode change 100644 => 100755 update.sh diff --git a/update.sh b/update.sh old mode 100644 new mode 100755 index bf1911b..91f99c6 --- a/update.sh +++ b/update.sh @@ -1,3 +1,5 @@ +#!/bin/bash + echo "[+] trying to fetch main branch" 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 echo "alias ge=\"ghost-eye\"" >> ~/.bashrc source ~/.bashrc - echo "[+] alias ge added, type ge to run ghost-eye" + echo "[+] alias 'ge' added, type 'ge' to run ghost-eye" else - echo "[+] alias ge already found" + echo "[+] alias 'ge' already found" fi