Skip to content
Snippets Groups Projects
Commit a553bc58 authored by Emanuele Aina's avatar Emanuele Aina
Browse files

setup_sysroot: Fix build using command:, not script:


Oops. Commit 54240d3b broke the build as I botched the directive to
use, leaving `script:` even if `command:` was now the right one as
`install` is a system command and not a local script.

Signed-off-by: Emanuele Aina's avatarEmanuele Aina <emanuele.aina@collabora.com>
parent 54240d3b
No related branches found
Tags upstream/0.4.7
No related merge requests found
......@@ -714,7 +714,7 @@ actions:
- action: run
description: "Setting up sysroot storage"
chroot: true
script: install -d -m 0755 -o user -g user /home/sysroot
command: install -d -m 0755 -o user -g user /home/sysroot
{{ end }}
- action: run
......
......@@ -719,7 +719,7 @@ actions:
- action: run
description: "Setting up sysroot storage"
chroot: true
script: install -d -m 0755 -o user -g user /home/sysroot
command: install -d -m 0755 -o user -g user /home/sysroot
{{ end }}
- action: run
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment