diff options
author | DR695H <dr695h@att.com> | 2019-10-11 10:54:08 -0400 |
---|---|---|
committer | DR695H <dr695h@att.com> | 2019-10-11 10:59:58 -0400 |
commit | 3cef788d6290eb4baf5ca72d36f3f8a1189f515e (patch) | |
tree | 2245281674c549d9dc20a6eaea41d7a11958c944 | |
parent | 53bf8d65899a09bf6c126d60ba3009e5ebdac497 (diff) |
only use pre for the robotframework onap build
Issue-ID: INT-1327
Change-Id: I7b09df21097014ad42d2d5a8ba53b4f56cf3fec0
Signed-off-by: DR695H <dr695h@att.com>
-rwxr-xr-x | setup.sh | 11 |
1 files changed, 8 insertions, 3 deletions
@@ -14,18 +14,23 @@ exec 2> >(tee -a ${LOG_FILE} >&2) # get the path path=$(pwd) pip install \ ---pre \ --no-cache-dir \ --exists-action s \ --target="$path/robot/library" \ ---extra-index-url="https://nexus3.onap.org/repository/PyPi.staging/simple" \ 'robotframework-seleniumlibrary==3.3.1' \ 'robotframework-databaselibrary==1.2' \ 'robotframework-angularjs==0.0.9' \ 'robotframework-requests==0.5.0' \ 'robotframework-sshlibrary==3.3.0' \ 'robotframework-ftplibrary==1.6' \ -'robotframework-archivelibrary==0.4.0' \ +'robotframework-archivelibrary==0.4.0' + +pip install \ +--pre \ +--no-cache-dir \ +--exists-action s \ +--target="$path/robot/library" \ +--extra-index-url="https://nexus3.onap.org/repository/PyPi.staging/simple" \ 'robotframework-onap==0.6.0.*' # i dont why we need this, but lets protobuf work in docker |