1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
|
This removes the deprecated %{linenumber} from puppet-lint
according to https://github.com/rodjek/puppet-lint/issues/539.
Debian bugreport #878157.
Index: phabricator-0~git20170812/arcanist/src/lint/linter/ArcanistPuppetLintLinter.php
===================================================================
--- phabricator-0~git20170812.orig/arcanist/src/lint/linter/ArcanistPuppetLintLinter.php
+++ phabricator-0~git20170812/arcanist/src/lint/linter/ArcanistPuppetLintLinter.php
@@ -56,7 +56,7 @@ final class ArcanistPuppetLintLinter ext
return array(
'--error-level=all',
sprintf('--log-format=%s', implode('|', array(
- '%{linenumber}',
+ '%{line}',
'%{column}',
'%{kind}',
'%{check}',
|