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.
This commit is contained in:
William Carroll 2020-08-21 12:31:03 +01:00
parent 56e4d9f9b5
commit fd626d907e

View file

@ -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]";
}
{