3
0
Fork 0
mirror of https://github.com/YosysHQ/sby.git synced 2025-04-07 06:44:06 +00:00

Print paths as absolute

This generally makes debugging path issues easier.
This commit is contained in:
piegames 2021-06-21 22:31:51 +02:00
parent 66a458958d
commit 99aca04638
2 changed files with 2 additions and 2 deletions

View file

@ -345,7 +345,7 @@ def run_job(taskname):
shutil.move(my_workdir, "{}.bak{:03d}".format(my_workdir, backup_idx))
if opt_force and not reusedir:
early_log(my_workdir, "Removing directory '{}'.".format(my_workdir))
early_log(my_workdir, "Removing directory '{}'.".format(os.path.abspath(my_workdir)))
if sbyfile:
shutil.rmtree(my_workdir, ignore_errors=True)

View file

@ -331,7 +331,7 @@ class SbyJob:
if basedir != "" and not os.path.exists(basedir):
os.makedirs(basedir)
self.log("Copy '{}' to '{}'.".format(srcfile, dstfile))
self.log("Copy '{}' to '{}'.".format(os.path.abspath(srcfile), os.path.abspath(dstfile)))
copyfile(srcfile, dstfile)
def handle_str_option(self, option_name, default_value):