From 1fa1f1a668764bbed50f5b7a73c291449a6ca281 Mon Sep 17 00:00:00 2001
From: Kevin Jahns <kevin.jahns@rwth-aachen.de>
Date: Wed, 4 Nov 2015 14:10:01 +0100
Subject: [PATCH] bumps package version

---
 gulpfile.js  | 8 +++++---
 package.json | 2 +-
 2 files changed, 6 insertions(+), 4 deletions(-)

diff --git a/gulpfile.js b/gulpfile.js
index 6577245c..26f950bc 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -52,6 +52,7 @@ var jasmine = require('gulp-jasmine')
 var jasmineBrowser = require('gulp-jasmine-browser')
 var concat = require('gulp-concat')
 var watch = require('gulp-watch')
+var exec = require('child_process').exec
 var $ = require('gulp-load-plugins')()
 
 var options = minimist(process.argv.slice(2), {
@@ -140,9 +141,10 @@ gulp.task('deploy:tag', function () {
     .pipe($.tagVersion({cwd: './dist'}))
 })
 
-gulp.task('deploy', ['deploy:updateSubmodule', 'deploy:bump', 'deploy:build', 'deploy:copy', 'deploy:commit', 'deploy:tag'], function () {
-  $.git.push('origin', 'master', function (err) {
-    if (err) throw err
+gulp.task('deploy', ['deploy:updateSubmodule', 'deploy:bump', 'deploy:build', 'deploy:copy', 'deploy:commit', 'deploy:tag'], function (cb) {
+  exec('echo yayy && echo yooo', function (err, stdout, stderr) {
+    console.log(err)
+    cb(err)
   })
 })
 
diff --git a/package.json b/package.json
index 6aeae31c..8db37a8a 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "yjs",
-  "version": "0.6.14",
+  "version": "0.6.15",
   "description": "A framework for real-time p2p shared editing on arbitrary complex data types",
   "main": "y.js",
   "scripts": {
-- 
GitLab