We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 316f066 commit 9349997Copy full SHA for 9349997
src/rez_pip/install.py
@@ -296,6 +296,8 @@ def deleteEntryFromRecord(
296
with open(recordFilePath, "r") as f:
297
lines = f.readlines()
298
299
+ print("Lines in RECORD:", lines)
300
+
301
schemesRaw = getSchemeDict(dist.name, path)
302
schemes = {
303
key: os.path.relpath(value, path)
@@ -309,6 +311,7 @@ def deleteEntryFromRecord(
309
311
for index, entry in enumerate(entries):
310
312
for schemePath in schemes.values():
313
if entry.startswith(schemePath):
314
+ _LOG.info(f"Stripping {schemePath!r}/ from {entry!r}")
315
entries[index] = entry.lstrip(schemePath + "/")
316
# Break on first match
317
break
0 commit comments