mirror of
https://github.com/YosysHQ/sby.git
synced 2025-04-05 22:14:08 +00:00
Add support for expanding environment variables.
Signed-off-by: Jeppe Johansen <jgj@gomspace.com>
This commit is contained in:
parent
f087a71f49
commit
57276995b6
|
@ -37,6 +37,14 @@ if os.name == "posix":
|
||||||
signal.signal(signal.SIGINT, force_shutdown)
|
signal.signal(signal.SIGINT, force_shutdown)
|
||||||
signal.signal(signal.SIGTERM, 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:
|
class SbyTask:
|
||||||
def __init__(self, job, info, deps, cmdline, logfile=None, logstderr=True):
|
def __init__(self, job, info, deps, cmdline, logfile=None, logstderr=True):
|
||||||
self.running = False
|
self.running = False
|
||||||
|
@ -290,8 +298,7 @@ class SbyJob:
|
||||||
self.error("destination filename must be a relative path without /../: %s" % dstfile)
|
self.error("destination filename must be a relative path without /../: %s" % dstfile)
|
||||||
dstfile = self.workdir + "/src/" + dstfile
|
dstfile = self.workdir + "/src/" + dstfile
|
||||||
|
|
||||||
if srcfile.startswith("~/"):
|
srcfile = process_filename(srcfile)
|
||||||
srcfile = os.environ['HOME'] + srcfile[1:]
|
|
||||||
|
|
||||||
basedir = os.path.dirname(dstfile)
|
basedir = os.path.dirname(dstfile)
|
||||||
if basedir != "" and not os.path.exists(basedir):
|
if basedir != "" and not os.path.exists(basedir):
|
||||||
|
|
Loading…
Reference in a new issue