]>
git-server-git.apps.pok.os.sepia.ceph.com Git - ceph-build.git/commit
scripts/build_utils.sh: use "python3 -m venv" to create venv
we started to have following error recently:
```
+ local path=/tmp/venv.0D0Gwn9bMl
+ '[' -d /tmp/venv.0D0Gwn9bMl ']'
+ command -v python3
+ virtualenv -p python3 /tmp/venv.0D0Gwn9bMl
/tmp/jenkins5609477504730019125.sh: line 106: virtualenv: command not found
```
instead of relying on `virtualenv`, let's use the builtin venv
module to create virtualenv.
Signed-off-by: Kefu Chai <kchai@redhat.com>