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:
1 changed files with 3 additions and 3 deletions
@@ -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
Reference in New Issue
Block a user
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.