Skip to content
Snippets Groups Projects
Commit 231ad725 authored by echicken's avatar echicken
Browse files

Corrected pattern ('.pnt' to '*.pnt') when scanning for point dirs

in outbound dirs.
There remains a problem where only 'outbound.*' dirs will be scanned
for points, and points in 'outbound' (sans extension, ie. zone 1) will
not be found.
parent 8571b37f
No related branches found
No related tags found
No related merge requests found
......@@ -773,7 +773,7 @@ function run_outbound(ran)
if (ext.search(/^\.[0-9a-f]+$/) == 0) {
if (file_isdir(dir)) {
addDir(dir);
pnts = directory(backslash(dir)+'.pnt', false);
pnts = directory(backslash(dir)+'*.pnt', false);
pnts.forEach(function(pdir) {
if (pdir.search(/[\\\/][0-9a-z]{8}.pnt$/) >= 0 && file_isdir(pdir))
addDir(pdir);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment