Skip to content
Snippets Groups Projects
Commit fe1841cc authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Use fullpath() to resolve the symlink issue for finding the correct xtrn dir.

parent b16b7a4f
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
...@@ -18,9 +18,9 @@ function scan(options) ...@@ -18,9 +18,9 @@ function scan(options)
if(options === undefined) if(options === undefined)
options = {}; options = {};
if(!options.src_dir) if(!options.src_dir)
options.src_dir = "../xtrn/3rdp-install/"; options.src_dir = fullpath(system.ctrl_dir + "../xtrn/3rdp-install/");
if(!options.xtrn_dir) if(!options.xtrn_dir)
options.xtrn_dir = "../xtrn/"; options.xtrn_dir = fullpath(system.ctrl_dir + "../xtrn/");
var out = []; var out = [];
var exe_list = {}; var exe_list = {};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment