Remove redirecting stash to /dev/null in Update.sh
parent
49dd5fdb03
commit
93864cdca2
|
@ -23,7 +23,7 @@ pushd "$ROOTDIR" > /dev/null
|
||||||
|
|
||||||
# Backup config
|
# Backup config
|
||||||
echo "[+] Backup Config"
|
echo "[+] Backup Config"
|
||||||
git stash > /dev/null
|
git stash
|
||||||
|
|
||||||
# Install requirements for PoshC2_Python
|
# Install requirements for PoshC2_Python
|
||||||
echo ""
|
echo ""
|
||||||
|
@ -32,7 +32,7 @@ git pull
|
||||||
|
|
||||||
# Restore config
|
# Restore config
|
||||||
echo "[+] Restore Config"
|
echo "[+] Restore Config"
|
||||||
git stash pop > /dev/null
|
git stash pop
|
||||||
echo ""
|
echo ""
|
||||||
echo "[+] Update complete"
|
echo "[+] Update complete"
|
||||||
echo ""
|
echo ""
|
||||||
|
|
Loading…
Reference in New Issue