limpieza-img

This commit is contained in:
2026-03-05 18:31:00 +01:00
parent e6dfdcd734
commit 8d8cc97bef
11109 changed files with 992 additions and 16413 deletions

11
deploy.sh Executable file
View File

@@ -0,0 +1,11 @@
#!/bin/bash
# Despliega static/ en release/project-a13tv/
SRC="$(dirname "$(realpath "$0")")/static"
DST="$(dirname "$(realpath "$0")")/release/project-a13tv"
echo "Desplegando en $DST ..."
# --no-group --no-owner: no intenta cambiar propietario/grupo en destino
rsync -rlt --no-group --no-owner --chmod=ug+rw "$SRC/" "$DST/"
echo "Despliegue completado."