Merge remote-tracking branch 'origin/master'
This commit is contained in:
13
scripts/deploy.sh
Normal file
13
scripts/deploy.sh
Normal 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" "$@"
|
||||
Reference in New Issue
Block a user