Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDanny <danny.goossen@gioxa.com>2018-01-03 23:57:41 +0300
committerKamil TrzciƄski <ayufan@ayufan.eu>2018-01-03 23:57:41 +0300
commit57a490ec192d91ec2fd9dc9e0511af1709001fe6 (patch)
tree5e7df9824e7eaf273c3728aad0f3f951aea37eff /lib/gitlab/ci
parentc6ab17f11395338d4dc13880ae8c60a37b1ba890 (diff)
fix issue #37843
Diffstat (limited to 'lib/gitlab/ci')
-rw-r--r--lib/gitlab/ci/ansi2html.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/gitlab/ci/ansi2html.rb b/lib/gitlab/ci/ansi2html.rb
index 72b75791bbb..e25916528f4 100644
--- a/lib/gitlab/ci/ansi2html.rb
+++ b/lib/gitlab/ci/ansi2html.rb
@@ -234,7 +234,7 @@ module Gitlab
# Most terminals show bold colored text in the light color variant
# Let's mimic that here
if @style_mask & STYLE_SWITCHES[:bold] != 0
- fg_color.sub!(/fg-(\w{2,}+)/, 'fg-l-\1')
+ fg_color.sub!(/fg-([a-z]{2,}+)/, 'fg-l-\1')
end
css_classes << fg_color
end