mirror of
https://github.com/YosysHQ/sby.git
synced 2025-04-05 06:04:06 +00:00
Add check for malformed dst filename in [files] section
Signed-off-by: Clifford Wolf <clifford@clifford.at>
This commit is contained in:
parent
9beb469ad9
commit
836d54d4c7
|
@ -230,6 +230,8 @@ class SbyJob:
|
|||
f.write(line)
|
||||
|
||||
for dstfile, srcfile in self.files.items():
|
||||
if dstfile.startswith("/") or dstfile.startswith("../") or ("/../" in dstfile):
|
||||
self.error("destination filename must be a relative path without /../: %s" % dstfile)
|
||||
dstfile = self.workdir + "/src/" + dstfile
|
||||
|
||||
if srcfile.startswith("~/"):
|
||||
|
|
Loading…
Reference in a new issue