From 42c1e7257470ce57f4c2778f632e33bf0a036814 Mon Sep 17 00:00:00 2001 From: Jorge Aparicio Date: Fri, 27 Jul 2018 00:21:54 -0500 Subject: [PATCH] make qemu-arm executable --- ci/install.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ci/install.sh b/ci/install.sh index 7f73c5f..af26e2d 100644 --- a/ci/install.sh +++ b/ci/install.sh @@ -18,6 +18,8 @@ main() { mkdir -p ~/.local/bin curl -L https://github.com/japaric/qemu-bin/raw/master/14.04/qemu-arm-2.12.0 > ~/.local/bin/qemu-arm + chmod +x ~/.local/bin/qemu-arm + qemu-arm --version } main