diff options
author | Linda Wang <wangwulin@huawei.com> | 2017-11-07 06:31:20 +0000 |
---|---|---|
committer | Linda Wang <wangwulin@huawei.com> | 2017-11-07 06:38:04 +0000 |
commit | 9ca52cc93dbc869c214f47c38697e61adda03b8b (patch) | |
tree | 65515aad6241cdd83c2bc19f2b8ee8c9201c5413 /docker/smoke/Dockerfile | |
parent | 5fe48568e50ad9a556cc4094ee05e76d9255a05d (diff) |
Fix the format of getting upper-constraints
Change-Id: I8a769ec161b1a718ef259ae6b6615aec01e337ec
Signed-off-by: Linda Wang <wangwulin@huawei.com>
Diffstat (limited to 'docker/smoke/Dockerfile')
-rw-r--r-- | docker/smoke/Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docker/smoke/Dockerfile b/docker/smoke/Dockerfile index ae56a6c7..8350602a 100644 --- a/docker/smoke/Dockerfile +++ b/docker/smoke/Dockerfile @@ -10,7 +10,7 @@ RUN apk --no-cache add --virtual .build-deps --update \ python-dev build-base linux-headers libffi-dev \ openssl-dev libjpeg-turbo-dev git && \ wget -q -O- https://git.openstack.org/cgit/openstack/requirements/plain/upper-constraints.txt?h=$OPENSTACK_TAG | \ - sed -E s/^tempest==+\(.*\)$/-e\ git+https:\\/\\/github.com\\/openstack\\/tempest@\\1#egg=tempest/ | \ + sed -E s/^tempest==+\(.*\)$/-e\ git+https:\\/\\/github.com\\/openstack\\/tempest@\\1#egg=tempest/ \ > upper-constraints.txt && \ git clone https://github.com/openstack/refstack-client.git /src/refstack-client && \ (cd src/refstack-client && git checkout $REFSTACK_TAG) && \ |