You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by br...@apache.org on 2013/09/23 20:33:42 UTC

git commit: Remove two debugger; lines that snuck in.

Updated Branches:
  refs/heads/master f7fd668d7 -> d215e5f5f


Remove two debugger; lines that snuck in.


Project: http://git-wip-us.apache.org/repos/asf/cordova-cli/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-cli/commit/d215e5f5
Tree: http://git-wip-us.apache.org/repos/asf/cordova-cli/tree/d215e5f5
Diff: http://git-wip-us.apache.org/repos/asf/cordova-cli/diff/d215e5f5

Branch: refs/heads/master
Commit: d215e5f5fc0bb8880f552616bed68653452a839d
Parents: f7fd668
Author: Braden Shepherdson <br...@gmail.com>
Authored: Mon Sep 23 14:33:25 2013 -0400
Committer: Braden Shepherdson <br...@gmail.com>
Committed: Mon Sep 23 14:33:25 2013 -0400

----------------------------------------------------------------------
 spec/build.spec.js | 1 -
 src/lazy_load.js   | 1 -
 2 files changed, 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/d215e5f5/spec/build.spec.js
----------------------------------------------------------------------
diff --git a/spec/build.spec.js b/spec/build.spec.js
index a3159d4..6e30825 100644
--- a/spec/build.spec.js
+++ b/spec/build.spec.js
@@ -73,7 +73,6 @@ describe('build command', function() {
 
     describe('success', function() {
         it('should run inside a Cordova-based project with at least one added platform and call both prepare and compile', function(done) {
-            debugger;
             cordova.raw.build(['android','ios']).then(function() {
                 expect(prepare_spy).toHaveBeenCalledWith({verbose: false, platforms: ['android', 'ios'], options: []});
                 expect(compile_spy).toHaveBeenCalledWith({verbose: false, platforms: ['android', 'ios'], options: []});

http://git-wip-us.apache.org/repos/asf/cordova-cli/blob/d215e5f5/src/lazy_load.js
----------------------------------------------------------------------
diff --git a/src/lazy_load.js b/src/lazy_load.js
index e21c164..8e57c29 100644
--- a/src/lazy_load.js
+++ b/src/lazy_load.js
@@ -82,7 +82,6 @@ module.exports = {
                         d.reject(err);
                     })
                     .on('end', function() {
-                        debugger;
                         events.emit('log', 'Downloaded, unzipped and extracted ' + size + ' byte response.');
                         var entries = fs.readdirSync(download_dir);
                         var entry = path.join(download_dir, entries[0]);