7 lines
131 B
Bash
Executable File
7 lines
131 B
Bash
Executable File
#!/bin/sh
|
|
# Post-commit hook: 本地提交后自动执行 Web 预发布脚本。
|
|
|
|
set -eu
|
|
|
|
bash scripts/release/pre_release_web.sh
|