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 #1001 from galasa-dev/mcobbett-check-secrets-fix
Browse files Browse the repository at this point in the history
build-locally.sh script update. sed not working on linux in same way as mac.
  • Loading branch information
techcobweb authored Oct 16, 2024
2 parents f7706e1 + 4d33665 commit 546eb95
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 @@ -220,8 +220,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 update_release_yaml {
Expand Down

0 comments on commit 546eb95

Please sign in to comment.