build script: remove extra whitespace

This commit is contained in:
alexey.lysiuk 2020-12-06 10:58:41 +02:00
parent 9c865eec1e
commit bdb135ec38

View file

@ -782,7 +782,7 @@ class NinjaTarget(MakeTarget):
subprocess.check_call(args, cwd=builder.build_path)
def post_build(self, builder: 'Builder'):
dest_path = builder.deps_path + self.name + os.sep + 'bin'
dest_path = builder.deps_path + self.name + os.sep + 'bin'
os.makedirs(dest_path, exist_ok=True)
shutil.copy(builder.build_path + self.name, dest_path)