We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2627742 commit c5592edCopy full SHA for c5592ed
1 file changed
erdpy/testnet/setup.py
@@ -267,7 +267,10 @@ def build_binaries(testnet_config: TestnetConfiguration):
267
for destination in testnet_config.all_nodes_folders():
268
shutil.copy(node_folder / "node", destination)
269
if arwen_binary:
270
- shutil.copy(node_folder / "arwen", destination)
+ try:
271
+ shutil.copy(node_folder / "arwen", destination)
272
+ except:
273
+ logger.warn("Could not copy the arwen binary!")
274
275
if workstation.get_platform() == "osx":
276
shutil.copy(libwasmer_path, destination)
0 commit comments