From f29067631ee2e01c8fcc056bce13b689cb663e59 Mon Sep 17 00:00:00 2001 From: Tim Burke Date: Thu, 27 Jun 2024 14:24:32 -0700 Subject: [PATCH] docker: Remove && chaining in install scripts Something about them threw off the exit-immediately-on-non-zero-exit behavior when building. Related-Bug: #2070029 Change-Id: I3e40ebd78a9f8e93c905b24a12f5f54b2d27c2d9 --- docker/install_scripts/50_swift_install.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docker/install_scripts/50_swift_install.sh b/docker/install_scripts/50_swift_install.sh index c189e4e445..953d75d541 100755 --- a/docker/install_scripts/50_swift_install.sh +++ b/docker/install_scripts/50_swift_install.sh @@ -1,9 +1,9 @@ #!/bin/sh set -e -pip install -U pip && \ -cd /opt/swift && \ -pip install -r requirements.txt && \ +pip install -U pip +cd /opt/swift +pip install -r requirements.txt pip install -e . cp doc/saio/bin/* $HOME/bin