10 lines
301 B
Bash
Executable File
10 lines
301 B
Bash
Executable File
#!/bin/sh
|
||
# --------------------------------------------------
|
||
# 用途:啟動 calculate-version action,將所有參數交給 Node 主程式。
|
||
# 更新日期:2026/07/11 17:44:33(Asia/Taipei)
|
||
# --------------------------------------------------
|
||
|
||
set -eu
|
||
|
||
exec node /action/src/index.js "$@"
|