buildroot: don't expect signatures from kupfer repos, small error logging bugfix in chroot.py

This commit is contained in:
InsanePrawn 2021-09-18 18:31:13 +02:00
parent 3b69c2235b
commit fef0f07297
2 changed files with 4 additions and 5 deletions

View file

@ -65,7 +65,7 @@ def create_chroot(
],
capture_output=True)
if result.returncode != 0:
raise Exception('Failed to install chroot:' + result.stdout + '\n' + result.stderr)
raise Exception('Failed to install chroot:' + result.stdout.decode() + '\n' + result.stderr.decode())
return chroot_path