Skip to content

Commit 4629390

Browse files
committed
fixup! Add options for the Julia binary and project path
1 parent a0b4df6 commit 4629390

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pysrc/juliacall/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -147,8 +147,8 @@ def args_from_config(config):
147147
CONFIG['opt_handle_signals'] = choice('handle_signals', ['yes', 'no'])[0]
148148
CONFIG['opt_startup_file'] = choice('startup_file', ['yes', 'no'])[0]
149149
CONFIG['opt_heap_size_hint'] = option('heap_size_hint')[0]
150-
CONFIG['project'] = path_option('project', default="", check_exists=True)[0]
151-
CONFIG['exe'] = path_option('exe', default="", check_exists=True)[0]
150+
CONFIG['project'] = path_option('project', check_exists=True)[0]
151+
CONFIG['exe'] = path_option('exe', check_exists=True)[0]
152152

153153
# Stop if we already initialised
154154
if CONFIG['inited']:

0 commit comments

Comments
 (0)