From 74074dfa2f40c1dcdd8aecbb25257d5a77930505 Mon Sep 17 00:00:00 2001
From: Donny <130464015+defitricks@users.noreply.github.com>
Date: Mon, 24 Mar 2025 12:03:58 +0300
Subject: [PATCH] Update update_abis.shFixing bug with incorrect argument
 handling in copy_abis function (#342)

---
 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
 }