From b8549432ef1043deb951e29e87bd9d8ae36f2cdd Mon Sep 17 00:00:00 2001 From: Moritz Bunkus Date: Sat, 12 Dec 2020 13:04:51 +0100 Subject: [PATCH] build system: use compiler-style warning output when updating QRC Allows editors to pick up on them & "go to next warning/error" type key bindings to work --- rake.d/helpers.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rake.d/helpers.rb b/rake.d/helpers.rb index 5bedfe4bd..f8f34c00c 100644 --- a/rake.d/helpers.rb +++ b/rake.d/helpers.rb @@ -359,7 +359,7 @@ def update_qrc next if seen[icon] || warned[icon] next if %r{%}.match(icon) - puts "Warning: no double-sized variant found for '#{icon}' (found first in '#{file}:#{line_num}')" + puts "#{file}:#{line_num}: warning: no double-sized variant found for '#{icon}'" warned[icon] = true end end