diff options
| -rw-r--r-- | xmake/actions/build/cleaner.lua | 2 | ||||
| -rw-r--r-- | xmake/actions/build/statistics.lua | 2 | ||||
| -rw-r--r-- | xmake/actions/update/main.lua | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/xmake/actions/build/cleaner.lua b/xmake/actions/build/cleaner.lua index 6916d961d..0f47ffeb3 100644 --- a/xmake/actions/build/cleaner.lua +++ b/xmake/actions/build/cleaner.lua @@ -54,7 +54,7 @@ function cleanup() try { function () - process.openv("xmake", argv, {stdout = path.join(os.tmpdir(), "cleaner.log")}, {detach = true}):close() + process.openv("xmake", argv, {stdout = path.join(os.tmpdir(), "cleaner.log"), detach = true}):close() end } end diff --git a/xmake/actions/build/statistics.lua b/xmake/actions/build/statistics.lua index d345b0fb4..9a4c196c5 100644 --- a/xmake/actions/build/statistics.lua +++ b/xmake/actions/build/statistics.lua @@ -88,7 +88,7 @@ function post() try { function () - process.openv("xmake", argv, {stdout = path.join(os.tmpdir(), projectname .. ".stats.log")}, {detach = true}):close() + process.openv("xmake", argv, {stdout = path.join(os.tmpdir(), projectname .. ".stats.log"), detach = true}):close() end } diff --git a/xmake/actions/update/main.lua b/xmake/actions/update/main.lua index 7264d472c..4bd4389cd 100644 --- a/xmake/actions/update/main.lua +++ b/xmake/actions/update/main.lua @@ -173,7 +173,7 @@ function _install(sourcedir) end else os.vrun("make build") - process.openv("./scripts/get.sh", {"__local__", "__install_only__"}, {stdout = os.tmpfile(), stderr = os.tmpfile()}, {detach = true}):close() + process.openv("./scripts/get.sh", {"__local__", "__install_only__"}, {stdout = os.tmpfile(), stderr = os.tmpfile(), detach = true}):close() end return true end, |
