Commit 53eb6a12f528f585888158c3dc10934bfd9d6c1c

Authored by Jose Pinto
Exists in master

Merge remote-tracking branch 'upstream/develop'

... ... @@ -53,6 +53,7 @@ gulp.task('pre-install', function() {
53 53 pump([
54 54 gulp.src('package.json'),
55 55 replace('ssh://git@debonline.dyndns.org:', 'http://git.focasoftware.com/'),
  56 + replace('.git', '.git#develop'),
56 57 gulp.dest('')
57 58 ]);
58 59 });
... ... @@ -61,6 +62,7 @@ gulp.task('post-install', function() {
61 62 pump([
62 63 gulp.src('package.json'),
63 64 replace('http://git.focasoftware.com/', 'ssh://git@debonline.dyndns.org:'),
  65 + replace('#develop', ''),
64 66 gulp.dest('')
65 67 ]);
66 68 });