From fd626d907ef8990a1e74dd0b332113e72de4a07d Mon Sep 17 00:00:00 2001 From: William Carroll Date: Fri, 21 Aug 2020 12:31:03 +0100 Subject: [PATCH] Remove debugging information Problem: my dev machine returns a different value for `git config --get-all secrets.patterns` than my CI machine... I ran `git-secrets --register-aws` to get additional coverage, but it's still not the same. I created an issue on the git-secrets GH repo to get better troubleshooting advice, but I don't need the logging info. anymore, so I'm removing it. --- ci/pipelines/briefcase.nix | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/ci/pipelines/briefcase.nix b/ci/pipelines/briefcase.nix index 2e1f956b8..9b09ef69b 100644 --- a/ci/pipelines/briefcase.nix +++ b/ci/pipelines/briefcase.nix @@ -3,12 +3,7 @@ let pipeline.steps = [ { - command = '' - echo $(pwd) - git show HEAD - git log -n 1 - ${pkgs.git-secrets}/bin/git-secrets --scan-history - ''; + command = "${pkgs.git-secrets}/bin/git-secrets --scan-history"; label = ":briefcase: Briefcase [lint]"; } {