13 lines
261 B
Bash
Executable File
13 lines
261 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
source "$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)/_common.sh"
|
|
|
|
if command -v air >/dev/null; then
|
|
air
|
|
exit 0
|
|
fi
|
|
|
|
echo "❌ 未检测到 air (热重载工具),请先安装: https://github.com/cosmtrek/air"
|
|
exit 0
|