From 41a0653ff78bbe417d98363eadab4f1d42a5367a Mon Sep 17 00:00:00 2001 From: Donny <130464015+defitricks@users.noreply.github.com> Date: Thu, 20 Feb 2025 18:37:45 +0200 Subject: [PATCH] Update update_abis.shFixing bug with incorrect argument handling in copy_abis function --- scripts/update_abis.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/update_abis.sh b/scripts/update_abis.sh index f8c4c27..36b4ac2 100755 --- a/scripts/update_abis.sh +++ b/scripts/update_abis.sh @@ -50,7 +50,7 @@ copy_file() { copy_abis() { 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 }