added files needed for preflight checks

This commit is contained in:
Lincoln Stein
2022-10-30 18:30:22 -04:00
parent 303a2495c7
commit 61ff90d1fd
34 changed files with 235 additions and 1 deletions

View File

@ -845,7 +845,7 @@ def retrieve_dream_command(opt,command,completer):
def write_commands(opt, file_path:str, outfilepath:str):
dir,basename = os.path.split(file_path)
try:
paths = list(Path(dir).glob(basename))
paths = sorted(list(Path(dir).glob(basename)))
except ValueError:
print(f'## "{basename}": unacceptable pattern')
return