fix(bin/lmake): fix typo LEAN_OPTIONS

This commit is contained in:
Soonho Kong 2014-08-06 20:51:26 -07:00
parent 8d4c7b4b2c
commit 9b23a52d0f

View file

@ -89,8 +89,8 @@ def find_lean_exe():
return False
def find_lean_opt():
""" Return a list of lean options from env_var LEAN_OPTION"""
lean_opt = os.environ.get('LEAN_OPTION')
""" Return a list of lean options from env_var LEAN_OPTIONS """
lean_opt = os.environ.get('LEAN_OPTIONS')
return string.split(lean_opt) if lean_opt is not None else []
def call_lean(leanfile, options):