##// 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 if project.identifier.empty?
253 if project.identifier.empty?
254 log("\tno identifier for project #{project.name}")
254 log("\tno identifier for project #{project.name}")
255 next
255 next
256 elsif not project.identifier.match(/^[a-z0-9\-]+$/)
256 elsif not project.identifier.match(/^[a-z0-9\-_]+$/)
257 log("\tinvalid identifier for project #{project.name} : #{project.identifier}");
257 log("\tinvalid identifier for project #{project.name} : #{project.identifier}");
258 next;
258 next;
259 end
259 end
General Comments 0
You need to be logged in to leave comments. Login now