Files
infrastructure-runtime-adapter/runtime/utils/path.ts
aricjean 3af4d06af6 init
2026-05-12 13:16:02 -07:00

13 lines
327 B
TypeScript

import { isWindows } from "std-env";
/**
* 获取跨平台兼容的二进制名称 (逻辑层)
*/
export function getBinName(name: string) {
// 仅在 Windows 且没有后缀时尝试添加 .exe
if (isWindows && !name.endsWith(".exe") && !name.includes(".")) {
return `${name}.exe`;
}
return name;
}