Commit 2e7f46c3 authored by Jens Ulferts's avatar Jens Ulferts Committed by Eric Davis

[#270] bugfix: considering underscore a valid match in project identifier

parent 1071f3ee
......@@ -238,7 +238,7 @@ projects.each do |project|
if project.identifier.empty?
log("\tno identifier for project #{project.name}")
next
elsif not project.identifier.match(/^[a-z0-9\-]+$/)
elsif not project.identifier.match(/^[a-z0-9\-_]+$/)
log("\tinvalid identifier for project #{project.name} : #{project.identifier}");
next;
end
......@@ -309,4 +309,3 @@ projects.each do |project|
end
end
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment