mirror of https://github.com/VLSIDA/OpenRAM.git
Change number of arguments check in prefixGDS.py
This commit is contained in:
parent
c69eb47a7a
commit
04382a2271
|
|
@ -3,7 +3,7 @@
|
|||
import sys
|
||||
from gdsMill import gdsMill
|
||||
|
||||
if len(sys.argv) < 4:
|
||||
if len(sys.argv) < 3:
|
||||
print("Script to prefix every instance and structure with the root cell name to provide unique namespace.")
|
||||
print("Usage: {0} in.gds out.gds".format(sys.argv[0]))
|
||||
sys.exit(1)
|
||||
|
|
|
|||
Loading…
Reference in New Issue