Drop replacing slash in git branch name

This commit is contained in:
David Murphy 2025-02-11 13:58:45 -07:00 committed by Daniel Wozniak
parent 2dbbcb5ed1
commit e120c04617

View file

@ -491,9 +491,10 @@ class GitProvider:
self._cache_basename = "_"
if self.id.startswith("__env__"):
try:
self._cache_basename = self.get_checkout_target().replace(
"/", "-"
) # replace '/' with '-' to not cause trouble with file-system
## DGM self._cache_basename = self.get_checkout_target().replace(
## DGM "/", "-"
## DGM ) # replace '/' with '-' to not cause trouble with file-system
self._cache_basename = self.get_checkout_target()
except AttributeError:
log.critical(