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

Add support for expanding environment variables.

Signed-off-by: Jeppe Johansen <jgj@gomspace.com>
This commit is contained in:
Jeppe Johansen 2019-05-08 16:56:33 +02:00
parent f087a71f49
commit 57276995b6

View file

@ -37,6 +37,14 @@ if os.name == "posix":
signal.signal(signal.SIGINT, force_shutdown)
signal.signal(signal.SIGTERM, force_shutdown)
def process_filename(filename):
if filename.startswith("~/"):
filename = os.environ['HOME'] + filename[1:]
filename = os.path.expandvars(filename)
return filename
class SbyTask:
def __init__(self, job, info, deps, cmdline, logfile=None, logstderr=True):
self.running = False
@ -290,8 +298,7 @@ class SbyJob:
self.error("destination filename must be a relative path without /../: %s" % dstfile)
dstfile = self.workdir + "/src/" + dstfile
if srcfile.startswith("~/"):
srcfile = os.environ['HOME'] + srcfile[1:]
srcfile = process_filename(srcfile)
basedir = os.path.dirname(dstfile)
if basedir != "" and not os.path.exists(basedir):