@@ -898,7 +898,7 @@ class SpiderBooter < ProcessBooter
898
898
def initialize ( ports , token )
899
899
args = [
900
900
"--enable-frozen-string-literal" , "-E" , "utf-8" , "--yjit" ,
901
- Paths . spider_server_path ,
901
+ File . expand_path ( Paths . spider_server_path ) ,
902
902
"-u" ,
903
903
ports [ "spider-listen-to-gui" ] ,
904
904
ports [ "spider-send-to-gui" ] ,
@@ -910,7 +910,7 @@ def initialize(ports, token)
910
910
token
911
911
]
912
912
913
- super ( Paths . ruby_path , args , Paths . spider_log_path )
913
+ super ( File . expand_path ( Paths . ruby_path ) , args , File . expand_path ( Paths . spider_log_path ) )
914
914
end
915
915
end
916
916
@@ -978,10 +978,10 @@ def initialize(ports, kill_switch, token)
978
978
979
979
cmd = File . expand_path ( Paths . tau_release_erl_bin_path )
980
980
981
- args = [ "-config" , " \" #{ File . expand_path ( Paths . tau_release_sys_path ) } \" " ,
982
- "-boot" , " \" #{ File . expand_path ( Paths . tau_release_start_path ) } \" " ,
983
- "-boot_var" , "RELEASE_LIB" , " \" #{ File . expand_path ( Paths . tau_release_lib_path ) } \" " ,
984
- "-args_file" , " \" #{ File . expand_path ( Paths . tau_release_vm_args_path ) } \" " ,
981
+ args = [ "-config" , File . expand_path ( Paths . tau_release_sys_path ) ,
982
+ "-boot" , File . expand_path ( Paths . tau_release_start_path ) ,
983
+ "-boot_var" , "RELEASE_LIB" , File . expand_path ( Paths . tau_release_lib_path ) ,
984
+ "-args_file" , File . expand_path ( Paths . tau_release_vm_args_path ) ,
985
985
"-noshell" ,
986
986
"-s" , "elixir" , "start_cli" ,
987
987
"-mode" , "embedded" ,
@@ -1186,7 +1186,7 @@ def initialize(ports, no_scsynth_inputs=false)
1186
1186
args << "-H" << sound_card_name
1187
1187
end
1188
1188
1189
- cmd = Paths . scsynth_path
1189
+ cmd = File . expand_path ( Paths . scsynth_path )
1190
1190
1191
1191
case Util . os
1192
1192
when :linux , :raspberry
0 commit comments