Skip to content

Commit df3615d

Browse files
committed
fix missing path creation before shutil.copyfile
1 parent 23b3412 commit df3615d

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

scripts/third_party_clone/cpp_utils.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import os
22
import shutil
33
import multiprocessing
4+
import time
45

56

67
class install_cpp_utils:
@@ -36,4 +37,5 @@ def __install_csv_parser(self):
3637

3738
os.system(
3839
"git clone https://github.com/ben-strasser/fast-cpp-csv-parser.git " + path)
40+
os.system("mkdir ./src/log")
3941
shutil.copyfile(path + "/csv.h", "./src/log/csv.h")

0 commit comments

Comments
 (0)