parent
aa03a0c346
commit
9519a5b7fd
1 changed files with 18 additions and 0 deletions
@ -0,0 +1,18 @@ |
||||
# SPDX-License-Identifer: Apache-2.0 |
||||
# Copyright © 2021 Intel Corporation |
||||
|
||||
"""Helper script to copy files at build time. |
||||
|
||||
This is easier than trying to detect whether to use copy, cp, or something else. |
||||
""" |
||||
|
||||
import shutil |
||||
import typing as T |
||||
|
||||
|
||||
def run(args: T.List[str]) -> int: |
||||
try: |
||||
shutil.copy2(args[0], args[1]) |
||||
except Exception: |
||||
return 1 |
||||
return 0 |
Loading…
Reference in new issue