diff options
author | Hong Guan <hg4105@att.com> | 2018-08-09 14:32:44 -0400 |
---|---|---|
committer | Hong Guan <hg4105@att.com> | 2018-08-09 14:33:15 -0400 |
commit | b1a32c3ee2dc4fe2b6c72edbf18d4526003aef36 (patch) | |
tree | e27ad917b6477922c0bc1725e5cb0ef11644bc9d | |
parent | d325d65c7bd63fa1709e3d1f0d5327a6a330c01f (diff) |
set "pip install -U setuptools"
Change-Id: I3897d81c8fd23ece198b5dcf34b21ea24859928a
Issue-ID: CCSDK-392
Signed-off-by: Hong Guan <hg4105@att.com>
-rwxr-xr-x | mvn-phase-script.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mvn-phase-script.sh b/mvn-phase-script.sh index b23eb86..97cfeb8 100755 --- a/mvn-phase-script.sh +++ b/mvn-phase-script.sh @@ -86,6 +86,7 @@ test) virtualenv .testenv . .testenv/bin/activate pip install --upgrade pip + pip install -U setuptools pip install tox (cd $PLUGIN_SUBDIR; tox) deactivate @@ -101,6 +102,7 @@ package) virtualenv .pkgenv . .pkgenv/bin/activate pip install --upgrade pip + pip install -U setuptools pip install wagon wagon create --format tar.gz $PLUGIN_SUBDIR deactivate |