From: James D. Forrester Date: Fri, 27 Jun 2014 22:58:45 +0000 (-0700) Subject: maintenance: Simpler OOjs UI pullthrough-script X-Git-Tag: 1.31.0-rc.0~15191 X-Git-Url: http://git.cyclocoop.org/%24href?a=commitdiff_plain;h=63fd087f6f8ba2dc03185a977c775d718b16e47a;p=lhc%2Fweb%2Fwiklou.git maintenance: Simpler OOjs UI pullthrough-script No need to run grunt test, given that the grunt build from npm install will suffice for our needs. Change-Id: I816639290874e4962d5dac7d580d314e3bd1cb16 --- diff --git a/maintenance/resources/update-oojs-ui.sh b/maintenance/resources/update-oojs-ui.sh index cc5988ce87..b91e48f194 100755 --- a/maintenance/resources/update-oojs-ui.sh +++ b/maintenance/resources/update-oojs-ui.sh @@ -63,10 +63,8 @@ then exit 0 fi -# Build the distribution (using grunt-test instead of grunt-build, because we -# want to run unit tests first, and because grunt-build is for a release build -# and wouldn't put a git hash in the file headers) -npm install && grunt test || exit 1 +# Build the distribution +npm install || exit 1 # Get the list of changes NEWCHANGES=$(git log $OLDHASH.. --oneline --no-merges --reverse --color=never)