fix(bin/linja.in): wrap args.cache to avoid problems handling fullpath with space
related issue: #986
This commit is contained in:
parent
632d4fae36
commit
d8fb6f5082
1 changed files with 1 additions and 1 deletions
|
@ -414,7 +414,7 @@ def get_lean_options(args):
|
||||||
if args.to_axiom:
|
if args.to_axiom:
|
||||||
args.lean_options.append("--to_axiom")
|
args.lean_options.append("--to_axiom")
|
||||||
if args.cache:
|
if args.cache:
|
||||||
args.lean_options += ["-c", args.cache]
|
args.lean_options += ["-c", '"%s"' % args.cache]
|
||||||
if args.lean_config_option:
|
if args.lean_config_option:
|
||||||
for item in args.lean_config_option:
|
for item in args.lean_config_option:
|
||||||
args.lean_options.append("-D" + item)
|
args.lean_options.append("-D" + item)
|
||||||
|
|
Loading…
Reference in a new issue