From 93864cdca26ea4a958e31e71c87d666a685cfdc6 Mon Sep 17 00:00:00 2001 From: m0rv4i Date: Sun, 31 Mar 2019 11:02:24 +0100 Subject: [PATCH] Remove redirecting stash to /dev/null in Update.sh --- Update.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Update.sh b/Update.sh index 21c6e0e..7f832cc 100755 --- a/Update.sh +++ b/Update.sh @@ -23,7 +23,7 @@ pushd "$ROOTDIR" > /dev/null # Backup config echo "[+] Backup Config" -git stash > /dev/null +git stash # Install requirements for PoshC2_Python echo "" @@ -32,7 +32,7 @@ git pull # Restore config echo "[+] Restore Config" -git stash pop > /dev/null +git stash pop echo "" echo "[+] Update complete" echo ""