Fix comment

This commit is contained in:
mrg 2021-06-13 14:18:55 -07:00
parent a1cb20878d
commit 2e23fffadd
1 changed files with 2 additions and 2 deletions

View File

@ -74,7 +74,7 @@ def write_drc_script(cell_name, gds_name, extract, final_verification, output_pa
magic_file = os.environ.get('OPENRAM_MAGICRC', None) magic_file = os.environ.get('OPENRAM_MAGICRC', None)
if not magic_file: if not magic_file:
magic_file = OPTS.openram_tech + "tech/.magicrc" magic_file = OPTS.openram_tech + "tech/.magicrc"
if os.path.exists(magic_file): if os.path.exists(magic_file):
shutil.copy(magic_file, output_path + "/.magicrc") shutil.copy(magic_file, output_path + "/.magicrc")
else: else:
@ -251,7 +251,7 @@ def write_lvs_script(cell_name, gds_name, sp_name, final_verification=False, out
if not output_path: if not output_path:
output_path = OPTS.openram_temp output_path = OPTS.openram_temp
# Copy .magicrc file into the output directory # Copy setup.tcl file into the output directory
setup_file = os.environ.get('OPENRAM_NETGENRC', None) setup_file = os.environ.get('OPENRAM_NETGENRC', None)
if not setup_file: if not setup_file:
setup_file = OPTS.openram_tech + "tech/setup.tcl" setup_file = OPTS.openram_tech + "tech/setup.tcl"