diff options
| author | ruki <[email protected]> | 2016-09-01 18:36:17 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2016-09-01 18:36:17 +0800 |
| commit | eb7401f0cf3d3039f3670c86ad05acbc7c042c39 (patch) | |
| tree | badb6faeee2a90147c49e6ba638e1b8f20421867 /xmake/core/project/project.lua | |
| parent | 314a1cd63b8efe3e3f897cedabc3c73789ff117f (diff) | |
bind sandbox for project task
Diffstat (limited to 'xmake/core/project/project.lua')
| -rw-r--r-- | xmake/core/project/project.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xmake/core/project/project.lua b/xmake/core/project/project.lua index 7d8b0fecc..3d5abb485 100644 --- a/xmake/core/project/project.lua +++ b/xmake/core/project/project.lua @@ -622,7 +622,7 @@ function project.tasks() -- the project file is not found? if not os.isfile(xmake._PROJECT_FILE) then - return {} + return {}, nil end -- load the tasks from the the project file @@ -632,7 +632,7 @@ function project.tasks() end -- ok? - return results + return results, interp end -- get the mtimes |
