Skip to content

Commit

Permalink
fix issues with build script
Browse files Browse the repository at this point in the history
  • Loading branch information
liabru committed Dec 25, 2015
1 parent c608b80 commit 1195421
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ var webserver = require('gulp-webserver');
var selenium = require('selenium-standalone');
var ngrok = require('ngrok');
var staticTransform = require('connect-static-transform');
var privateConfig = require('./test/conf/private.conf.js').config;
var pkg = require('./package.json');
var extend = require('util')._extend;
var server;
Expand All @@ -28,7 +27,7 @@ gulp.task('release', function(callback) {
});

gulp.task('build', function() {
build = extend(pkg)
var build = extend(pkg);
build.version = process.argv[4] || pkg.version;
return gulp.src(pkg.main)
.pipe(replace("version = 'master'", "version = '" + build.version + "'"))
Expand Down

0 comments on commit 1195421

Please sign in to comment.