jenkins-bot has submitted this change and it was merged. ( https://gerrit.wikimedia.org/r/345539 )
Change subject: build: have banana linter to ignore log/ ......................................................................
build: have banana linter to ignore log/
On Wikimedia Jenkins, a directory 'log/' is created in the workspace area. That causes the banana i18n linter to fail because it can not find '/log/qqq.json'.
Instruct banana to ignore /log/
Bug: T130207 Bug: T130208 Change-Id: I003d2c7397b9acbd77d9056eae07a0d2e711d33f --- M Gruntfile.js 1 file changed, 1 insertion(+), 1 deletion(-)
Approvals: Hashar: Looks good to me, approved jenkins-bot: Verified
diff --git a/Gruntfile.js b/Gruntfile.js index 971ed9f..23ed8ac 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -8,7 +8,7 @@
grunt.initConfig( { banana: { - all: ['*/', '!node_modules/'] + all: ['*/', '!log/', '!node_modules/'] } } );
pywikibot-commits@lists.wikimedia.org