Merge remote-tracking branch 'origin/master'

This commit is contained in:
M_Kececi
2026-03-03 11:06:12 +03:00
parent e1a62df40d
commit 24774863bf
2 changed files with 138 additions and 0 deletions

13
scripts/deploy.sh Normal file
View File

@@ -0,0 +1,13 @@
#!/bin/bash
set -euo pipefail
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
ROOT_DIR="$(cd "${SCRIPT_DIR}/.." && pwd)"
TARGET="${ROOT_DIR}/deploy/deploy.sh"
if [[ ! -f "$TARGET" ]]; then
echo "ERROR: target deploy script not found: $TARGET"
exit 1
fi
exec /bin/bash "$TARGET" "$@"