Updating dist.js

stable
Alejandro Alonso 2015-01-30 13:03:11 +01:00
parent 107e8f2ae6
commit f844d1717d
1 changed files with 1 additions and 1 deletions

View File

@ -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;