File tree 7 files changed +128
-54
lines changed 7 files changed +128
-54
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,10 @@ plugins:
8
8
enabled : false
9
9
SC2086 :
10
10
enabled : false
11
+ SC2033 :
12
+ enabled : false
13
+ SC1090 :
14
+ enabled : false
11
15
markdownlint :
12
16
enabled : true
13
17
checks :
@@ -22,3 +26,4 @@ exclude_patterns:
22
26
- conf/
23
27
- Apache2/
24
28
- fonts/
29
+ - usr/
Original file line number Diff line number Diff line change @@ -53,7 +53,6 @@ aplicaciones_basicas() {
53
53
for x in " ${lista_todos_paquetes[@]} " ; do
54
54
if [[ $s = $x ]]; then
55
55
echo -e " $RO $s$VE ya estaba instalado$CL "
56
- tmp=false
57
56
break
58
57
else
59
58
instalarSoftware " $s "
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ ninjaide_postconfiguracion() {
47
47
fi
48
48
49
49
# # Resolviendo otras dependencia de plugins para Ninja IDE
50
- echo -e " $VEResolviendo $RO dependencias$VE para plugins de Ninja IDE$CL "
50
+ echo -e " $VE Resolviendo $RO dependencias$VE para plugins de Ninja IDE$CL "
51
51
instalarSoftware ' python-git' ' python3-git'
52
52
}
53
53
Original file line number Diff line number Diff line change @@ -106,7 +106,7 @@ configurar_git() {
106
106
git config --global gui.encoding utf-8
107
107
108
108
# # Preguntar si se desea configurar GPG
109
- echo -e " $VE ¿Quieres configurar una clave$RO GPG$VE para firmar?$yellow "
109
+ echo -e " $VE ¿Quieres configurar una clave$RO GPG$VE para firmar?$CL "
110
110
read -p ' Introduce una opción y/N → ' input
111
111
if [[ -n $input ]] ||
112
112
[[ $input = ' n' ]] ||
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ nodejs_postconfiguracion() {
42
42
# # FIXME → Crear array para la variable:
43
43
local paquetes=' eslint jscs bower compass stylelint bundled'
44
44
45
- instalarNpm paquetes
45
+ instalarNpm $ paquetes
46
46
}
47
47
48
48
nodejs_instalador () {
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ CL="\e[0m" ## Limpiar colores
40
40
41
41
WORKSCRIPT=$PWD # # Directorio principal del script
42
42
USER=$( whoami) # # Usuario que ejecuta el script
43
- VERSION=' 0.5.3 ' # # Versión en desarrollo
43
+ VERSION=' 0.5.4 ' # # Versión en desarrollo
44
44
LOGERROR=" $WORKSCRIPT /errores.log" # # Archivo donde almacenar errores
45
45
DEBUG=false # # Establece si está el script en modo depuración
46
46
You can’t perform that action at this time.
0 commit comments