aboutsummaryrefslogtreecommitdiff
path: root/src/libutil/url-parts.hh
diff options
context:
space:
mode:
authorMaximilian Bosch <maximilian@mbosch.me>2020-10-06 20:08:51 +0200
committerMaximilian Bosch <maximilian@mbosch.me>2020-10-06 20:08:51 +0200
commit59f2dd8e8da1f82aa9e29e30ba1df643434a9254 (patch)
tree26de740eb4dfa01380cf7825870123c021eafe59 /src/libutil/url-parts.hh
parentad143c5b3b7e713b89f0437ce17c20ac642ca530 (diff)
libfetchers/github: allow slashes in refs
Refs #4061
Diffstat (limited to 'src/libutil/url-parts.hh')
-rw-r--r--src/libutil/url-parts.hh2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libutil/url-parts.hh b/src/libutil/url-parts.hh
index 68be15cb0..e0e2809fd 100644
--- a/src/libutil/url-parts.hh
+++ b/src/libutil/url-parts.hh
@@ -22,7 +22,7 @@ const static std::string absPathRegex = "(?:(?:/" + segmentRegex + ")*/?)";
const static std::string pathRegex = "(?:" + segmentRegex + "(?:/" + segmentRegex + ")*/?)";
// A Git ref (i.e. branch or tag name).
-const static std::string refRegexS = "[a-zA-Z0-9][a-zA-Z0-9_.-]*"; // FIXME: check
+const static std::string refRegexS = "[a-zA-Z0-9][a-zA-Z0-9_.\\/-]*"; // FIXME: check
extern std::regex refRegex;
// Instead of defining what a good Git Ref is, we define what a bad Git Ref is