From 9d488c2f7574aca43262eee3d6550c98f3eff77f Mon Sep 17 00:00:00 2001 From: Ben Gourley Date: Thu, 24 Nov 2011 20:44:49 +0000 Subject: [PATCH] Command line flags --- lib/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/index.js b/lib/index.js index d7c74b6..5a0df58 100644 --- a/lib/index.js +++ b/lib/index.js @@ -8,7 +8,7 @@ module.exports = function (share) { task('installdeps', ['launch:symlink'], function () { action.remote(share.info.remote, 'cd ' + share.payload + - ' && npm install --verbose', function (exitcode) { + ' && npm install', function (exitcode) { if (exitcode === 0) { action.success('Dependencies installed'); complete(); @@ -92,7 +92,7 @@ module.exports = function (share) { var env = share.env ? share.env + '/' : ''; share.payload = share.info.remotepath + env + '/.payloads/' + share.info.name + '-' + new Date().getTime(); - action.local('rsync -arv ' + share.tempdir + ' rubble:' + action.local('rsync -arvz ' + share.tempdir + ' rubble:' + share.payload, function (exitcode) { if (exitcode === 0) { action.success('Repo contents put to remote');