mirror of
https://gitlab.com/kupfer/kupferbootstrap.git
synced 2025-06-27 10:45:37 -04:00
buildroot: don't expect signatures from kupfer repos, small error logging bugfix in chroot.py
This commit is contained in:
parent
3b69c2235b
commit
fef0f07297
2 changed files with 4 additions and 5 deletions
|
@ -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
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue