Fix generating csr.csv file

Fix generating csr.csv file when no absolute path is given.
This commit is contained in:
Peter Gielda 2018-08-12 13:37:39 +02:00 committed by GitHub
parent 9fa234da50
commit 3c7890cdd4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ class Builder:
csr_regions = self.soc.get_csr_regions()
constants = self.soc.get_constants()
csr_dir = os.path.dirname(self.csr_csv)
csr_dir = os.path.dirname(os.path.realpath(self.csr_csv))
os.makedirs(csr_dir, exist_ok=True)
write_to_file(
self.csr_csv,