diff options
| author | Simon Rettberg | 2025-08-07 17:49:05 +0200 |
|---|---|---|
| committer | Simon Rettberg | 2025-08-07 17:49:05 +0200 |
| commit | 2584eee860c47d41dddbdf03daaaa0a8187c2925 (patch) | |
| tree | a37d2a82e351452d7f78ca6c57a3b571dd86345e | |
| parent | api/cron: Add log line when job finished successfully (diff) | |
| download | slx-admin-2584eee860c47d41dddbdf03daaaa0a8187c2925.tar.gz slx-admin-2584eee860c47d41dddbdf03daaaa0a8187c2925.tar.xz slx-admin-2584eee860c47d41dddbdf03daaaa0a8187c2925.zip | |
Ignore KG2-specific files
| -rw-r--r-- | .gitignore | 4 | ||||
| -rwxr-xr-x | pack.sh | 5 |
2 files changed, 8 insertions, 1 deletions
@@ -7,6 +7,10 @@ nbproject/ /client_config_additional.php apis/tmpUploads/* /modules/ +# KG2-specific panel +Monotype-* +kg2.css +*-kg2.html # Not sure about these... .idea/php.xml .idea/vcs.xml @@ -1,6 +1,9 @@ #!/bin/sh -tar ckzf slx-admin.tar.gz api.php index.php apis fonts inc lang modules-available Mustache script style install.php install-all || exit 1 +tar --exclude="Monotype-*" --exclude="kg2.css" --exclude="*-kg2.html" -v -c -k -z -f slx-admin.tar.gz \ + api.php index.php \ + apis fonts inc lang modules-available Mustache script style \ + install.php install-all || exit 1 if [ "$1" = "--deploy" ]; then scp slx-admin.tar.gz root@132.230.4.17:install/slx-admin.tar.gz |
