From bf30fe0e9f0fb1189a3b066282ea4cc99438c9c8 Mon Sep 17 00:00:00 2001 From: jlukic Date: Mon, 12 Jan 2015 14:30:50 -0500 Subject: [PATCH] #1607 Meteor version uses global version from package.json --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 8ae7f057f..d52085cbe 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -1256,7 +1256,7 @@ gulp.task('create repos', false, function(callback) { .pipe(flatten()) .pipe(replace(regExp.match.name, regExp.replace.name)) .pipe(replace(regExp.match.titleName, regExp.replace.titleName)) - .pipe(replace(regExp.match.version, regExp.replace.mversion)) + .pipe(replace(regExp.match.version, version)) .pipe(replace(regExp.match.files, fileNames)) .pipe(rename(defaults.files.npm)) .pipe(gulp.dest(outputDirectory))