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
This commit is contained in:
parent
37169aa6ac
commit
f29067631e
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user