Skip to content

Commit a7fba71

Browse files
committed
Remove console log
1 parent 6b7a5b7 commit a7fba71

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

server/src/util/shebang.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,5 @@ export function isBashShebang(shebang: string): boolean {
2323

2424
export function hasBashShebang(fileContent: string): boolean {
2525
const shebang = getShebang(fileContent)
26-
27-
console.log('>>>', fileContent, shebang, shebang && isBashShebang(shebang))
2826
return shebang ? isBashShebang(shebang) : false
2927
}

0 commit comments

Comments
 (0)