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",