# Le pido un rootpath donde se instalara este comando en particular
is_writeable=0
while [ $is_writeable -eq 0 ]; do
- leer ">> Ingrese la ruta de instalación" "$CURRDIR/grupoNN" userpath
+ leer ">> Ingrese la ruta de instalación" "$CURRDIR" userpath
if [ -n "$userpath" ]; then
ROOTPATH=$userpath
if [ -w "${userpath%/*}" ]; then is_writeable=1
else echo ">> ERROR: No es posible crear dicho directorio"
fi
else
- ROOTPATH="$CURRDIR/grupoNN"
+ ROOTPATH="$CURRDIR"
is_writible=1
fi
done
numline=$(($numline+1))
changeLine "$CONFFILE" "$numline" "FECINS = $fecha"
echo ">> Instalación del componente $comando completada"
+ echo ">> Presione ENTER para continuar"
read
done