From b7b50a7d5f3aef469dfdbde56b30d1349b97436b Mon Sep 17 00:00:00 2001 From: Timmy Willison Date: Thu, 15 Aug 2013 15:56:47 -0400 Subject: [PATCH] Fix build for jenkins --- build/build.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build/build.js b/build/build.js index 249b27924..e4717d606 100644 --- a/build/build.js +++ b/build/build.js @@ -34,8 +34,9 @@ module.exports = function( grunt ) { * @param {String} contents The contents to be written (including their AMD wrappers) */ function convert( name, path, contents ) { + console.log( path ); // Convert var modules - if ( /\/var\//.test( path ) ) { + if ( /.\/var\//.test( path ) ) { contents = contents .replace( /define\([\w\W]*?return/, "var " + (/var\/([\w-]+)/.exec(name)[1]) + " =" ) .replace( rdefineEnd, "" ); -- 2.39.5