Skip to content

Commit

Permalink
fixed comma-separation issue by converting to newline (#1009)
Browse files Browse the repository at this point in the history
Co-authored-by: Michal Mironczuk <[email protected]>
  • Loading branch information
0xDEnYO and mirooon authored Feb 20, 2025
1 parent 8dc38b3 commit 5f0b20a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/versionControlAndAuditCheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -393,8 +393,8 @@ jobs:
echo "This step will make sure that an audit is logged for each contract modified/added by this PR."
echo "It will also make sure that no information is missing in the audit log and that the information is meaningful."
# load list of protected contracts
PROTECTED_CONTRACTS=$(cat contracts_for_audit.txt)
# convert from comma-separated to newline-separated
PROTECTED_CONTRACTS=$(tr ',' '\n' < contracts_for_audit.txt)
echo "PROTECTED_CONTRACTS: $PROTECTED_CONTRACTS"
##### make sure that there are any protected contracts
Expand Down

0 comments on commit 5f0b20a

Please sign in to comment.