Skip to content

Commit c5592ed

Browse files
committed
Add warning
1 parent 2627742 commit c5592ed

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

erdpy/testnet/setup.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,10 @@ def build_binaries(testnet_config: TestnetConfiguration):
267267
for destination in testnet_config.all_nodes_folders():
268268
shutil.copy(node_folder / "node", destination)
269269
if arwen_binary:
270-
shutil.copy(node_folder / "arwen", destination)
270+
try:
271+
shutil.copy(node_folder / "arwen", destination)
272+
except:
273+
logger.warn("Could not copy the arwen binary!")
271274

272275
if workstation.get_platform() == "osx":
273276
shutil.copy(libwasmer_path, destination)

0 commit comments

Comments
 (0)