Making PHPStan happy
This commit is contained in:
parent
62567e2d40
commit
7c47baa66b
|
@ -0,0 +1 @@
|
|||
tags
|
|
@ -252,9 +252,9 @@ function build_mono($src_spec, $out_file, $ref_dlls = array(), $mcs_opts = "")
|
|||
foreach($sources as $src)
|
||||
{
|
||||
if(is_win())
|
||||
$sources_str .= '"'.normalize_path($src, !is_win()).'" ';
|
||||
$sources_str .= '"'.normalize_path($src).'" ';
|
||||
else
|
||||
$sources_str .= '\''.normalize_path($src, !is_win()).'\' ';
|
||||
$sources_str .= '\''.normalize_path($src).'\' ';
|
||||
}
|
||||
|
||||
$deps = $sources;
|
||||
|
@ -300,7 +300,7 @@ function run_mono($exe_file)
|
|||
if(is_win())
|
||||
{
|
||||
$unity_dir = "$app_dir/Editor/Data";
|
||||
$mono_bin = '"' . normalize_path("$unity_dir/Mono/bin/mono", !is_win()) . '"';
|
||||
$mono_bin = '"' . normalize_path("$unity_dir/Mono/bin/mono") . '"';
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue