Skip to content
Snippets Groups Projects
Commit 41e37366 authored by Bernd Flemisch's avatar Bernd Flemisch
Browse files

[bin] replace call to copy_tree from distutils by copytree from shutil

parent 950e80dd
No related branches found
No related tags found
1 merge request!3227Replace call to copy_tree from distutils by copytree from shutil
Pipeline #19526 passed
+2
...@@ -15,7 +15,7 @@ import textwrap ...@@ -15,7 +15,7 @@ import textwrap
import itertools import itertools
import glob import glob
import multiprocessing as mp import multiprocessing as mp
from distutils.dir_util import copy_tree from shutil import copytree
from pathlib import Path from pathlib import Path
from functools import partial from functools import partial
...@@ -145,7 +145,7 @@ def detectNewModule(): ...@@ -145,7 +145,7 @@ def detectNewModule():
def copySubFolders(subFolder, oldPath, newPath): def copySubFolders(subFolder, oldPath, newPath):
"""Copy folders from old path to new path""" """Copy folders from old path to new path"""
for sub in subFolder: for sub in subFolder:
copy_tree(os.path.join(oldPath, sub), os.path.join(newPath, sub)) copytree(os.path.join(oldPath, sub), os.path.join(newPath, sub))
def addFoldersToCMakeLists(modulePath, subFolder): def addFoldersToCMakeLists(modulePath, subFolder):
......
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