Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorBrad Warren <bmw@users.noreply.github.com>2021-08-05 00:04:05 +0300
committerGitHub <noreply@github.com>2021-08-05 00:04:05 +0300
commit7b7877001005a7c476f6c04a984528a538496cb3 (patch)
tree9d80d6c0d962313ed95e673051de257a6f8fdb5e /tools
parentcd2dff2db139cca07954a80d587d76d5d0b94abb (diff)
fix egg-info cleanup (#8966)
Diffstat (limited to 'tools')
-rwxr-xr-xtools/pinning/common/export-pinned-dependencies.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/pinning/common/export-pinned-dependencies.sh b/tools/pinning/common/export-pinned-dependencies.sh
index 69c55fbbf..be6f0aa4e 100755
--- a/tools/pinning/common/export-pinned-dependencies.sh
+++ b/tools/pinning/common/export-pinned-dependencies.sh
@@ -29,7 +29,7 @@ fi
# Old eggs can cause outdated dependency information to be used by poetry so we
# delete them before generating the lock file. See
# https://github.com/python-poetry/poetry/issues/4103 for more info.
-rm -rf ${REPO_ROOT}/*.egg-info
+rm -rf ${REPO_ROOT}/*/*.egg-info
cd "${WORK_DIR}"