From 4eaac03205b0b5243a7b5c65c186e4fc66e68176 Mon Sep 17 00:00:00 2001 From: Cyrix126 Date: Sat, 5 Oct 2024 19:10:47 +0200 Subject: [PATCH] fix: macos mistype const --- src/disk/consts.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/disk/consts.rs b/src/disk/consts.rs index 75d4152..01ab745 100644 --- a/src/disk/consts.rs +++ b/src/disk/consts.rs @@ -49,7 +49,7 @@ pub const DEFAULT_XMRIG_PATH: &str = "xmrig/xmrig"; #[cfg(target_os = "macos")] pub const DEFAULT_XMRIG_PROXY_PATH: &str = "xmrig-proxy/xmrig-proxy"; #[cfg(target_os = "macos")] -pub const DEFAULT_XMRIG_NODE_PATH: &str = "node/monerod"; +pub const DEFAULT_NODE_PATH: &str = "node/monerod"; // Default to [/usr/bin/] for Linux distro builds. #[cfg(target_os = "linux")]