mirror of
https://github.com/Telecominfraproject/openlan-cgw.git
synced 2026-03-20 03:39:42 +00:00
13 lines
374 B
Python
Executable File
13 lines
374 B
Python
Executable File
#!/usr/bin/env python
|
|
import argparse
|
|
import shutil
|
|
|
|
if __name__ == "__main__":
|
|
parser = argparse.ArgumentParser()
|
|
parser.add_argument("--datadir", required=True)
|
|
parser.add_argument("--sourcedir", required=True)
|
|
parser.add_argument("--test-argument", required=True)
|
|
args, _ = parser.parse_known_args()
|
|
|
|
shutil.copytree(args.sourcedir, args.datadir)
|