From 7c001732b1d39abda5e9933d4cbf92954e6e7710 Mon Sep 17 00:00:00 2001 From: mrg Date: Tue, 18 May 2021 14:54:13 -0700 Subject: [PATCH] Add destination file as dot file --- compiler/verify/magic.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/verify/magic.py b/compiler/verify/magic.py index ae7acd48..e4f0b428 100644 --- a/compiler/verify/magic.py +++ b/compiler/verify/magic.py @@ -76,7 +76,7 @@ def write_drc_script(cell_name, gds_name, extract, final_verification, output_pa magic_file = OPTS.openram_tech + "tech/.magicrc" if os.path.exists(magic_file): - shutil.copy(magic_file, output_path) + shutil.copy(magic_file, output_path + "/.magicrc") else: debug.warning("Could not locate .magicrc file: {}".format(magic_file))