Remove logs.

This commit is contained in:
André Cruz
2013-04-24 00:18:59 +01:00
parent 413fd61900
commit 179781dfee
2 changed files with 0 additions and 4 deletions

View File

@@ -52,8 +52,6 @@ GitFsResolver.prototype._copy = function (meta) {
GitFsResolver.prototype._checkout = function () {
var resolution = this._resolution;
console.log(resolution);
// Checkout resolution
return cmd('git', ['checkout', '-f', resolution.tag || resolution.branch || resolution.commit], { cwd: this._tempDir })
// Cleanup unstagged files

View File

@@ -17,8 +17,6 @@ GitRemoteResolver.prototype._checkout = function () {
var branch,
resolution = this._resolution;
console.log(resolution);
// If resolution is a commit, we need to clone the entire repo and checkit out
// Because a commit is not a nammed ref, there's no better solution
if (resolution.type === 'commit') {