Browse Source

'sg_mbp_release' now copies the frms also

master
Holger Frey 2 years ago
parent
commit
b4bfc339de
  1. 1
      work_helpers/sg_mbp_release.py

1
work_helpers/sg_mbp_release.py

@ -133,6 +133,7 @@ def copy_workbooks(destination, release_version):
print(excel_file.name, "->", new_path) print(excel_file.name, "->", new_path)
shutil.copyfile(excel_file, new_path) shutil.copyfile(excel_file, new_path)
def copy_frms(destination, release_version): def copy_frms(destination, release_version):
all_folders = (f for f in PATH_WORKBOOKS.iterdir() if f.is_dir()) all_folders = (f for f in PATH_WORKBOOKS.iterdir() if f.is_dir())
all_frms = (f for f in all_folders if "frm" in f.name.lower()) all_frms = (f for f in all_folders if "frm" in f.name.lower())

Loading…
Cancel
Save