fix: 添加读取用户目录下的配置文件

This commit is contained in:
2025-12-22 14:21:11 +08:00
parent 6eeb4bb494
commit e94151cec5
3 changed files with 32 additions and 6 deletions

View File

@@ -14,7 +14,7 @@ BUILD_TIME := $(shell date -u +%Y-%m-%dT%H:%M:%SZ)
# Detect Zig
ifeq ($(OS),Windows_NT)
ZIG_BIN := $(shell where zig 2>nul)
ZIG_BIN := $(shell where zig 2>/dev/null)
else
ZIG_BIN := $(shell which zig 2>/dev/null)
endif