From d15dd28e26b18c403f391e414a09e7677ccae088 Mon Sep 17 00:00:00 2001 From: Leon Styhre Date: Sat, 24 Aug 2024 12:07:30 +0200 Subject: [PATCH] Added a code comment clarification in FileSystemUtil --- es-core/src/utils/FileSystemUtil.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/es-core/src/utils/FileSystemUtil.cpp b/es-core/src/utils/FileSystemUtil.cpp index 32b18f9de..309efce85 100644 --- a/es-core/src/utils/FileSystemUtil.cpp +++ b/es-core/src/utils/FileSystemUtil.cpp @@ -383,7 +383,7 @@ namespace Utils exePath = getCanonicalPath(esBinary); } #endif - // Fallback to argv[0] if everything else fails. + // Fallback to argv[0] if everything else fails, which is always the case on macOS. if (exePath.empty()) { esBinary = path; exePath = getCanonicalPath(path);