3
0
Fork 0
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:
Clifford Wolf 2018-04-13 18:03:35 +02:00
parent 9beb469ad9
commit 836d54d4c7

View file

@ -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("~/"):