Skip to content

Commit 7a0559e

Browse files
authored
Merge pull request #119 from fryntiz/dev
Correcciones y mejoras de sintaxis
2 parents 74ee4df + 875e540 commit 7a0559e

File tree

7 files changed

+128
-54
lines changed

7 files changed

+128
-54
lines changed

.codeclimate.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ plugins:
88
enabled: false
99
SC2086:
1010
enabled: false
11+
SC2033:
12+
enabled: false
13+
SC1090:
14+
enabled: false
1115
markdownlint:
1216
enabled: true
1317
checks:
@@ -22,3 +26,4 @@ exclude_patterns:
2226
- conf/
2327
- Apache2/
2428
- fonts/
29+
- usr/

Apps/1_Aplicaciones_Basicas.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ aplicaciones_basicas() {
5353
for x in "${lista_todos_paquetes[@]}"; do
5454
if [[ $s = $x ]]; then
5555
echo -e "$RO $s$VE ya estaba instalado$CL"
56-
tmp=false
5756
break
5857
else
5958
instalarSoftware "$s"

Apps/Ninja-IDE.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ ninjaide_postconfiguracion() {
4747
fi
4848

4949
## 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"
5151
instalarSoftware 'python-git' 'python3-git'
5252
}
5353

Personalizar/Configurar_GIT.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ configurar_git() {
106106
git config --global gui.encoding utf-8
107107

108108
## 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"
110110
read -p 'Introduce una opción y/N → ' input
111111
if [[ -n $input ]] ||
112112
[[ $input = 'n' ]] ||

README.md

Lines changed: 119 additions & 49 deletions
Large diffs are not rendered by default.

Servidores/nodejs.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ nodejs_postconfiguracion() {
4242
## FIXME → Crear array para la variable:
4343
local paquetes='eslint jscs bower compass stylelint bundled'
4444

45-
instalarNpm paquetes
45+
instalarNpm $paquetes
4646
}
4747

4848
nodejs_instalador() {

main.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ CL="\e[0m" ## Limpiar colores
4040

4141
WORKSCRIPT=$PWD ## Directorio principal del script
4242
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
4444
LOGERROR="$WORKSCRIPT/errores.log" ## Archivo donde almacenar errores
4545
DEBUG=false ## Establece si está el script en modo depuración
4646

0 commit comments

Comments
 (0)