This repository has been archived by the owner on Mar 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
actualizar.sh
executable file
·70 lines (63 loc) · 1.99 KB
/
actualizar.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#!/bin/bash
# -*- ENCODING: UTF-8 -*-
#######################################
# ### Raúl Caro Pastorino ### #
## ## ## ##
### # https://github.com/fryntiz/ # ###
## ## ## ##
# ### www.fryntiz.es ### #
#######################################
############################
## Constantes Colores ##
############################
amarillo="\033[1;33m"
azul="\033[1;34m"
blanco="\033[1;37m"
cyan="\033[1;36m"
gris="\033[0;37m"
magenta="\033[1;35m"
rojo="\033[1;31m"
verde="\033[1;32m"
#############################
## Variables Generales ##
#############################
version="$(cat $DirInstalacion/version.csv)"
VersionActual="$version creando la base del menú"
clear;
#Comprobar versión y cambios
echo -e "$verde Comprobando versión$gris"
sleep 1
clear
echo -e "$verde Comprobando versión...$gris"
sleep 1
clear
echo -e "$verde Comprobando versión...$rojo'OK'$gris"
echo -e "$verde Versión actual: $rojo$VersionActual$gris"
echo ""
echo -e "$verde Descargando contenido$gris"
#Condicional if: -d para comprobar si existe dir y -f para archivos -x permisos de ejecución
if [ -d ".git" ]
then
echo -e "$rojo El repositorio git si está inicializado$gris"
git fetch origin master
git pull origin master
git stash
clear
git pull origin master
else
echo -e "$rojo .git No existe$gris"
git init
git remote add origin https://github.com/fryntiz/SuperScriptBash
git fetch origin master
git pull origin master
git stash
clear
git pull origin master
fi
#Pantear una reinstalación limpia forzosa respetando archivos de configuración
#Reinstalación limpia
#git clone https://github.com/fryntiz/SuperScriptBash ~/.SuperScriptBash
#cd ~/.SuperScriptBash
#. main.sh
#sudo sh instalador.sh
echo -e "$amarillo Aún estamos en pruebas y es muy probable que falle el actualizador automático$gris"