Skip to content
This repository has been archived by the owner on Nov 4, 2024. It is now read-only.

Commit

Permalink
Merge pull request #55 from galasa-dev/mcobbett-detect-secrets-fix
Browse files Browse the repository at this point in the history
build locally script needs to work on linux and mac.
  • Loading branch information
techcobweb authored Oct 16, 2024
2 parents 43a15c1 + ca9c62e commit 76e8e72
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion build-locally.sh
Original file line number Diff line number Diff line change
Expand Up @@ -148,8 +148,19 @@ function check_secrets {
error "Not all secrets found have been audited"
exit 1
fi
sed -i '' '/[ ]*"generated_at": ".*",/d' .secrets.baseline
success "secrets audit complete"

h2 "Removing the timestamp from the secrets baseline file so it doesn't always cause a git change."
mkdir -p temp
rc=$?
check_exit_code $rc "Failed to create a temporary folder"
cat .secrets.baseline | grep -v "generated_at" > temp/.secrets.baseline.temp
rc=$?
check_exit_code $rc "Failed to create a temporary file with no timestamp inside"
mv temp/.secrets.baseline.temp .secrets.baseline
rc=$?
check_exit_code $rc "Failed to overwrite the secrets baseline with one containing no timestamp inside."
success "secrets baseline timestamp content has been removed ok"
}

function build_gradle_plugin() {
Expand Down

0 comments on commit 76e8e72

Please sign in to comment.