summaryrefslogtreecommitdiff
path: root/xmake/modules/detect/tools/find_python2.lua
diff options
context:
space:
mode:
authorruki <[email protected]>2020-09-25 00:33:07 +0800
committerruki <[email protected]>2020-09-25 00:33:07 +0800
commit90af4956738036172984f068502624bbc515cae7 (patch)
tree7cd7177becaf98e676ae8eaa478f042e14505d3a /xmake/modules/detect/tools/find_python2.lua
parent700f08a7bae11c22295f884610f98b7b99eb1790 (diff)
fix trailing white-space
Diffstat (limited to 'xmake/modules/detect/tools/find_python2.lua')
-rw-r--r--xmake/modules/detect/tools/find_python2.lua18
1 files changed, 9 insertions, 9 deletions
diff --git a/xmake/modules/detect/tools/find_python2.lua b/xmake/modules/detect/tools/find_python2.lua
index ed6d1259d..d296754db 100644
--- a/xmake/modules/detect/tools/find_python2.lua
+++ b/xmake/modules/detect/tools/find_python2.lua
@@ -11,7 +11,7 @@
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
---
+--
-- Copyright (C) 2015-2020, TBOOX Open Source Group.
--
-- @author ruki
@@ -22,36 +22,36 @@
import("lib.detect.find_program")
import("lib.detect.find_programver")
--- find python
+-- find python
--
-- @param opt the arguments, e.g. {version = true}
--
-- @return program, version
--
--- @code
+-- @code
--
-- local python = find_python2()
-- local python, version = find_python2({version = true})
---
+--
-- @endcode
--
function main(opt)
-- init options
opt = opt or {}
-
+
-- find program
local program = find_program(opt.program or "python2", opt)
if not program then
program = find_program("python", opt)
opt.version = true
end
-
+
-- find program version
local version = nil
if program and opt.version then
- opt.command = function ()
- local outs, errs = os.iorunv(program, {"--version"})
+ opt.command = function ()
+ local outs, errs = os.iorunv(program, {"--version"})
return ((outs or "") .. (errs or "")):trim()
end
version = find_programver(program, opt)
@@ -59,7 +59,7 @@ function main(opt)
-- check version
if version and not version:startswith("2.") then
- return
+ return
end
-- ok?