From f844d1717dc508b98ea926bc08416f7a756ef953 Mon Sep 17 00:00:00 2001 From: Alejandro Alonso Date: Fri, 30 Jan 2015 13:03:11 +0100 Subject: [PATCH] Updating dist.js --- dist.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dist.js b/dist.js index e381093..f4176da 100644 --- a/dist.js +++ b/dist.js @@ -20,7 +20,7 @@ var synchRepoAction = (function cloneOrPull(){ if (cloned) { action = 'git checkout ' + branch + '&& cd ' + local + ' && git checkout ' + branch + ' && git pull'; } else { - action = 'git checkout ' + branch + 'git clone -b ' + branch + ' ' + repo + ' ' + local; + action = 'git checkout ' + branch + '&& git clone -b ' + branch + ' ' + repo + ' ' + local; } return action;