aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVG <vg@devys.org>2016-11-08 23:24:10 +0100
committerVG <vg@devys.org>2016-11-08 23:24:10 +0100
commit20835466e5f1c08af2f8a94a8d009521b3fa2290 (patch)
tree7adb8c1be1268f15b2aaa9d143b3e4d72d31877f
parenta05d8cac9d8349b699354f3318963764df609316 (diff)
downloaddebootstrap-scripts-20835466e5f1c08af2f8a94a8d009521b3fa2290.tar.gz
debootstrap-scripts-20835466e5f1c08af2f8a94a8d009521b3fa2290.tar.bz2
debootstrap-scripts-20835466e5f1c08af2f8a94a8d009521b3fa2290.zip
add missing comma, fix badly concatenated apt command
-rwxr-xr-xrpi2-debian-stdkernel/make-rpi-debootstrap.py2
1 files changed, 1 insertions, 1 deletions
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():