diff options
| author | ruki <[email protected]> | 2026-08-27 00:51:04 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2026-08-27 00:51:04 +0800 |
| commit | 82f8922ff9c6251a52f398c754521f640d618400 (patch) | |
| tree | 8de2b298b8f3ccead2b163af56a033691dedbd5f | |
| parent | 68b6df38f871029ad0990bc0fe998ebf69b9f2ad (diff) | |
fix platform menu for service
| -rw-r--r-- | xmake/core/platform/menu.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xmake/core/platform/menu.lua b/xmake/core/platform/menu.lua index cec901ee8..77a57381d 100644 --- a/xmake/core/platform/menu.lua +++ b/xmake/core/platform/menu.lua @@ -42,7 +42,7 @@ function _remote_build_is_connected() local projectdir = os.projectdir() local projectfile = os.projectfile() if projectfile and os.isfile(projectfile) and projectdir then - local workdir = path.join(config.directory(), "remote_build") + local workdir = path.join(config.directory(), "service", "remote_build") local statusfile = path.join(workdir, "status.txt") if os.isfile(statusfile) then local status = io.load(statusfile) |
