Skip to content

Commit 74074df

Browse files
authored
Update update_abis.shFixing bug with incorrect argument handling in copy_abis function (#342)
1 parent 12538e4 commit 74074df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/update_abis.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ copy_file() {
5050

5151
copy_abis() {
5252
for contract_name in "$@"; do
53-
copy_file $(./scripts/search_abi.sh "$path/artifacts" "$contract_name.json") "storage-contracts-abis/$contract_name.json"
53+
copy_file "$(./scripts/search_abi.sh "$path/artifacts" "$contract_name.json")" "storage-contracts-abis/$contract_name.json"
5454
done
5555
}
5656

0 commit comments

Comments
 (0)