Update update_abis.shFixing bug with incorrect argument handling in copy_abis function

This commit is contained in:
Donny 2025-02-20 18:37:45 +02:00 committed by GitHub
parent 898350e271
commit 41a0653ff7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -50,7 +50,7 @@ copy_file() {
copy_abis() { copy_abis() {
for contract_name in "$@"; do for contract_name in "$@"; do
copy_file $(./scripts/search_abi.sh "$path/artifacts" "$contract_name.json") "storage-contracts-abis/$contract_name.json" copy_file "$(./scripts/search_abi.sh "$path/artifacts" "$contract_name.json")" "storage-contracts-abis/$contract_name.json"
done done
} }