diff --git a/gulpfile.js b/gulpfile.js index 50f74e6..06eb25c 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -53,6 +53,7 @@ gulp.task('pre-install', function() { pump([ gulp.src('package.json'), replace('ssh://git@debonline.dyndns.org:', 'http://git.focasoftware.com/'), + replace('.git', '.git#develop'), gulp.dest('') ]); }); @@ -61,6 +62,7 @@ gulp.task('post-install', function() { pump([ gulp.src('package.json'), replace('http://git.focasoftware.com/', 'ssh://git@debonline.dyndns.org:'), + replace('#develop', ''), gulp.dest('') ]); });