about summary refs log tree commit diff
path: root/ci
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2020-08-21T11·31+0100
committerWilliam Carroll <wpcarro@gmail.com>2020-08-21T11·31+0100
commitfd626d907ef8990a1e74dd0b332113e72de4a07d (patch)
tree955451a63dd1d42a07128adb56f1bc47b3bd33fd /ci
parent56e4d9f9b5f1bceabc36f04aac575db7df9ef666 (diff)
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.
Diffstat (limited to 'ci')
-rw-r--r--ci/pipelines/briefcase.nix7
1 files changed, 1 insertions, 6 deletions
diff --git a/ci/pipelines/briefcase.nix b/ci/pipelines/briefcase.nix
index 2e1f956b84c4..9b09ef69b5d9 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]";
     }
     {