##// END OF EJS Templates
reposman: allow underscores in project identifiers (#1363)...
Toshi MARUYAMA -
r9143:5c9dd1629527
parent child
Show More
@@ -253,7 +253,7 projects.each do |project|
253 253 if project.identifier.empty?
254 254 log("\tno identifier for project #{project.name}")
255 255 next
256 elsif not project.identifier.match(/^[a-z0-9\-]+$/)
256 elsif not project.identifier.match(/^[a-z0-9\-_]+$/)
257 257 log("\tinvalid identifier for project #{project.name} : #{project.identifier}");
258 258 next;
259 259 end
General Comments 0
You need to be logged in to leave comments. Login now