11 lines
281 B
Bash
Executable File
11 lines
281 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
|
|
|
|
"$ROOT_DIR/scripts/build_srs.sh"
|
|
"$ROOT_DIR/scripts/build_video.sh"
|
|
SKIP_VIDEO_BUILD=1 "$ROOT_DIR/scripts/package_release.sh"
|
|
|
|
echo "Done. Release package is under $ROOT_DIR/dist/"
|