ci/bare-metal: Add parens around shell command

Play safe and make sure we don't get bit by priority rules between the
|| and | operators.

Signed-off-by: Tomeu Vizoso <tomeu.vizoso@collabora.com>
Suggested-by: Martin Peres <martin.peres@mupuf.org>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11337>
This commit is contained in:
Tomeu Vizoso 2021-06-15 11:23:23 +02:00
parent b04e826e33
commit c06e72791e
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ mount -t tmpfs tmpfs /tmp
. /set-job-env-vars.sh
[ -z "$HWCI_KERNEL_MODULES" ] || echo -n $HWCI_KERNEL_MODULES | xargs -d, -n1 /usr/sbin/modprobe
[ -z "$HWCI_KERNEL_MODULES" ] || (echo -n $HWCI_KERNEL_MODULES | xargs -d, -n1 /usr/sbin/modprobe)
# Store Mesa's disk cache under /tmp, rather than sending it out over NFS.
export XDG_CACHE_HOME=/tmp