From 3b69de91e1cf2f68e0d77a926fdb483ec2e18a92 Mon Sep 17 00:00:00 2001 From: Rhys Arkins <rhys@arkins.net> Date: Tue, 21 May 2019 09:57:57 +0200 Subject: [PATCH] chore: remove debugger statements --- lib/platform/git/storage.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/platform/git/storage.ts b/lib/platform/git/storage.ts index 986b00d764..02baa82d25 100644 --- a/lib/platform/git/storage.ts +++ b/lib/platform/git/storage.ts @@ -51,7 +51,6 @@ class Storage { } async initRepo(args: IStorageConfig) { - debugger; this.cleanRepo(); // eslint-disable-next-line no-multi-assign const config: ILocalConfig = (this._config = { ...args } as any); @@ -111,7 +110,6 @@ class Storage { // clone only the default branch await this._git.clone(config.url, '.', ['--depth=2']); } catch (err) /* istanbul ignore next */ { - debugger; logger.debug({ err }, 'git clone error'); throw new Error('platform-failure'); } -- GitLab