diff --git a/gulpfile.js b/gulpfile.js index b67b7bb..dd2a3df 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -52,7 +52,7 @@ gulp.task('sass', function() { gulp.task('pre-install', function() { pump([ gulp.src('package.json'), - replace('debonline.dyndns.org', 'git.focasoftware.com'), + replace('ssh://git@debonline.dyndns.org:', 'http://git.focasoftware.com/'), gulp.dest('') ]); }) @@ -60,7 +60,7 @@ gulp.task('pre-install', function() { gulp.task('post-install', function() { pump([ gulp.src('package.json'), - replace('git.focasoftware.com', 'debonline.dyndns.org'), + replace('http://git.focasoftware.com/', 'ssh://git@debonline.dyndns.org:'), gulp.dest('') ]); })