9 lines
264 B
Bash
Executable File
9 lines
264 B
Bash
Executable File
#!/usr/bin/env bash
|
||
# 仓库根入口:等价于 fish_api/start_no_fresh.sh(保留 SQLite 与缓存)
|
||
#
|
||
# bash scripts/start_no_fresh.sh
|
||
#
|
||
set -euo pipefail
|
||
ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
|
||
exec bash "$ROOT/fish_api/start_no_fresh.sh"
|