Skip to content

Commit

Permalink
#47 correcting default behavior to clone master branch
Browse files Browse the repository at this point in the history
  • Loading branch information
kecso committed Apr 7, 2015
1 parent a399b21 commit 048bfab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/worker/simpleworker.js
Original file line number Diff line number Diff line change
Expand Up @@ -591,7 +591,7 @@ var getSeedFromDb = function (name, branch, commit, callback) {
if (commit) {
contextParameters.commitHash = commit;
} else {
contextParameters.branchName = branch;
contextParameters.branchName = branch || 'master';
}
OpenContext(storage, gmeConfig, contextParameters, function (err, result) {
if (err) {
Expand Down

0 comments on commit 048bfab

Please sign in to comment.