Skip to content

Commit

Permalink
Fix the URL typo
Browse files Browse the repository at this point in the history
  • Loading branch information
vkalangu authored Jul 9, 2021
1 parent 0ae0013 commit eb89754
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/detect_secrets.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ with open('.secrets.baseline', 'r') as f:
if found_secrets:
print('Secrets were found in the source code!')
print('If these contain false positives, they can be marked as such with the `detect-secrets audit .secrets.baseline` command and committing the updated baseline file into the application repo.')
print('Read more about the tool at https://w3.ibm.com/w3publisher/detect-secrets/developer-tool\n\n')
print('Read more about the tool at https://github.com/ibm/detect-secrets#about\n\n')
print('FOUND SECRETS:')
for secret in found_secrets:
print('File: ' + secret[0] + ' Line: ' + str(secret[1]['line_number']) + ' Type: ' + secret[1]['type'])
Expand Down

0 comments on commit eb89754

Please sign in to comment.