mirror of
https://github.com/julenvitoria/GnW.git
synced 2025-12-17 13:15:54 +01:00
15 lines
365 B
Bash
Executable File
15 lines
365 B
Bash
Executable File
#!/bin/bash
|
|
#By julenvitoria
|
|
|
|
usuario="kde"
|
|
|
|
clear
|
|
if [ -d /home/$usuario/gameandwatch/game-and-watch-patch ]; then
|
|
cd /home/$usuario/gameandwatch/game-and-watch-patch
|
|
git pull --recurse-submodules
|
|
read -n 1 -s -r -p "Presiona cualquier tecla para continuar"
|
|
cd -
|
|
else
|
|
echo "El directorio del repo no se ha detectado, no se puede proseguir."
|
|
fi
|