[Pkg-javascript-commits] [less.js] 256/285: Fix incorrect gruntfile check
Jonas Smedegaard
dr at jones.dk
Mon Oct 26 23:23:59 UTC 2015
This is an automated email from the git hooks/post-receive script.
js pushed a commit to annotated tag v2.0.0
in repository less.js.
commit 88927af49b31227bde29921a71f7bccbe49520a8
Author: Luke Page <luke.a.page at gmail.com>
Date: Sat Nov 1 19:57:05 2014 +0000
Fix incorrect gruntfile check
---
Gruntfile.js | 8 +++++---
1 file changed, 5 insertions(+), 3 deletions(-)
diff --git a/Gruntfile.js b/Gruntfile.js
index 38d275d..8e2233d 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -335,8 +335,7 @@ module.exports = function (grunt) {
grunt.registerTask('browsertest', [
'browsertest-lessjs',
'connect',
- 'jasmine',
- 'clean:sauce_log'
+ 'jasmine'
]);
// setup a web server to run the browser tests in a browser rather than phantom
@@ -362,8 +361,11 @@ module.exports = function (grunt) {
'browsertest'
];
+ console.log("Travis env...");
+ console.dir(Number(process.env.TRAVIS_PULL_REQUEST, 10));
+ console.dir(Number(process.env.TRAVIS_NODE_VERSION));
if (isNaN(Number(process.env.TRAVIS_PULL_REQUEST, 10)) &&
- Number(process.env.TRAVIS_NODE_VERSION) === "0.11") {
+ Number(process.env.TRAVIS_NODE_VERSION) === 0.11) {
testTasks.push("sauce");
}
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-javascript/less.js.git
More information about the Pkg-javascript-commits
mailing list