11 lines
257 B
Bash
Executable File
11 lines
257 B
Bash
Executable File
#!/bin/sh
|
|
# Post-commit hook: 本地提交后自动执行 Web 预发布脚本。
|
|
|
|
set -eu
|
|
|
|
SCRIPT_PATH="scripts/release/pre_release_web.sh"
|
|
|
|
echo "=== post-commit: running $SCRIPT_PATH ==="
|
|
export COZSWEET_SKIP_POST_COMMIT_PRE_RELEASE=1
|
|
bash "$SCRIPT_PATH"
|