diff options
author | Ken Dreyer <kdreyer@redhat.com> | 2021-09-01 23:40:35 +0200 |
---|---|---|
committer | Ken Dreyer <kdreyer@redhat.com> | 2021-09-01 23:40:35 +0200 |
commit | 9b539494e65e2c4b34559ffaf3f1e66db272e4a5 (patch) | |
tree | 4bd4716e0ceb5f49f4cac75a43ae603f22b3b6c9 /admin | |
parent | Merge pull request #42942 from zdover23/wip-doc-mgr-progress (diff) | |
download | ceph-9b539494e65e2c4b34559ffaf3f1e66db272e4a5.tar.xz ceph-9b539494e65e2c4b34559ffaf3f1e66db272e4a5.zip |
admin/build-doc: use venv module again
Commit 690ca1c5628af629a25a80611c20e56095f13352 accidentally
re-introduced virtualenv. Switch back to the venv module in stdlib.
Signed-off-by: Ken Dreyer <kdreyer@redhat.com>
Diffstat (limited to 'admin')
-rwxr-xr-x | admin/build-doc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/admin/build-doc b/admin/build-doc index bbda3eb631b..656990ae9c3 100755 --- a/admin/build-doc +++ b/admin/build-doc @@ -55,7 +55,7 @@ if test -f $md5 && md5sum --check $md5 > /dev/null; then # reusing existing venv : else - virtualenv --python=python3 $vdir + python3 -m venv $vdir $vdir/bin/pip install --quiet wheel $vdir/bin/pip install --quiet \ |