From 20835466e5f1c08af2f8a94a8d009521b3fa2290 Mon Sep 17 00:00:00 2001 From: VG Date: Tue, 8 Nov 2016 23:24:10 +0100 Subject: add missing comma, fix badly concatenated apt command --- rpi2-debian-stdkernel/make-rpi-debootstrap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpi2-debian-stdkernel/make-rpi-debootstrap.py b/rpi2-debian-stdkernel/make-rpi-debootstrap.py index aa1a6ea..286cdcf 100755 --- a/rpi2-debian-stdkernel/make-rpi-debootstrap.py +++ b/rpi2-debian-stdkernel/make-rpi-debootstrap.py @@ -155,7 +155,7 @@ def system_customization(rootdir): run(['chroot', rootdir, '/usr/bin/qemu-arm-static', '/usr/bin/apt', 'update'], check=True) run(['chroot', rootdir, '/usr/bin/qemu-arm-static', - '/usr/bin/apt', 'install' 'linux-image-raspi2'], check=True) + '/usr/bin/apt', 'install', 'linux-image-raspi2'], check=True) def main(): -- cgit v1.2.3