From 79af2c1a44bf5dec834823f1ce565de8d72f1f5f Mon Sep 17 00:00:00 2001 From: Paul de Wouters Date: Fri, 9 Oct 2015 20:34:44 +0100 Subject: [PATCH] fixes to build tasks --- grunt/excludes | 3 ++- grunt/shell.js | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/grunt/excludes b/grunt/excludes index fe20f3b1..194c9f95 100644 --- a/grunt/excludes +++ b/grunt/excludes @@ -20,5 +20,6 @@ readme tests phpunit .jshintrc -CONTRIBUTING.MD +CONTRIBUTING.md changelog.txt +.scrutinizer.yml diff --git a/grunt/shell.js b/grunt/shell.js index e91b9242..33c91f91 100644 --- a/grunt/shell.js +++ b/grunt/shell.js @@ -1,5 +1,5 @@ module.exports = { build: { - command: 'mkdir -p releases/svn && rsync -avzrR --exclude-from \'grunt/excludes\' . releases/svn/' + command: 'mkdir -p releases/svn && rsync -avzrR --exclude-from \'grunt/excludes\' . releases/svn/trunk' } };