feat/redesign (#1)

Reviewed-on: #1
Co-authored-by: Gonçalo Correia <goncalojoaocorreia@gmail.com>
Co-committed-by: Gonçalo Correia <goncalojoaocorreia@gmail.com>
This commit is contained in:
Gonçalo Correia 2026-05-15 14:53:15 +01:00 committed by rukira
parent 6a44458443
commit 6ebb92c62b
21 changed files with 1395 additions and 273 deletions

View file

@ -7,7 +7,7 @@ OUTPUT_FILE="$OUTPUT_DIR/$ADDON_NAME.zip"
STAGING_DIR="$(mktemp -d)"
mkdir -p "$STAGING_DIR/$ADDON_NAME"
rsync -a --exclude='.DS_Store' --exclude='__MACOSX' --exclude='.git' "$SCRIPT_DIR/" "$STAGING_DIR/$ADDON_NAME/"
rsync -a --exclude='.DS_Store' --exclude='__MACOSX' --exclude='.git' --exclude='docs' "$SCRIPT_DIR/" "$STAGING_DIR/$ADDON_NAME/"
cd "$STAGING_DIR" && \
zip -r "$OUTPUT_FILE" "$ADDON_NAME"