Skip to content

Commit 2acdfbf

Browse files
committed
fix: fmt
1 parent aac67d0 commit 2acdfbf

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

src/utils/bashPath.ts

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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
*/
109109
export function isBashAvailable(): boolean {
@@ -114,5 +114,3 @@ export function isBashAvailable(): boolean {
114114
return false;
115115
}
116116
}
117-
118-

0 commit comments

Comments
 (0)