File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed
Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change 11/**
22 * Platform-specific bash path resolution
3- *
3+ *
44 * On Unix/Linux/macOS, bash is in PATH by default.
55 * On Windows, bash comes from Git Bash and needs to be located.
66 */
@@ -73,7 +73,7 @@ function findWindowsBash(): string | null {
7373
7474/**
7575 * Get the bash executable path for the current platform
76- *
76+ *
7777 * @returns Path to bash executable. On Unix/macOS returns "bash",
7878 * on Windows returns full path to bash.exe if found.
7979 * @throws Error if bash cannot be found on Windows
@@ -103,7 +103,7 @@ export function getBashPath(): string {
103103
104104/**
105105 * Check if bash is available on the system
106- *
106+ *
107107 * @returns true if bash is available, false otherwise
108108 */
109109export function isBashAvailable ( ) : boolean {
@@ -114,5 +114,3 @@ export function isBashAvailable(): boolean {
114114 return false ;
115115 }
116116}
117-
118-
You can’t perform that action at this time.
0 commit comments