From b3372cc50ebee04ec690709a6c56c5bfa0b4dda6 Mon Sep 17 00:00:00 2001 From: Reinier Criel Date: Wed, 15 Apr 2026 15:33:37 -0700 Subject: [PATCH] Rename function --- .../safe-chain/src/shell-integration/supported-shells/bash.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/safe-chain/src/shell-integration/supported-shells/bash.js b/packages/safe-chain/src/shell-integration/supported-shells/bash.js index 34dcde7..956429d 100644 --- a/packages/safe-chain/src/shell-integration/supported-shells/bash.js +++ b/packages/safe-chain/src/shell-integration/supported-shells/bash.js @@ -118,7 +118,7 @@ function toBashPath(path) { } if (hasCygpath()) { - return cygpathu(path); + return convertCygwinPathToUnix(path); } return path.replace(/\\/g, "/"); @@ -176,7 +176,7 @@ function cygpathw(path) { * * @returns {string} */ -function cygpathu(path) { +function convertCygwinPathToUnix(path) { try { var result = spawnSync("cygpath", ["-u", path], { encoding: "utf8",