From a5dea1f5cdd61273823731d8a5936139393eb8f9 Mon Sep 17 00:00:00 2001 From: Daniel Santa Rosa Date: Sun, 30 Nov 2025 19:36:48 -0300 Subject: [PATCH] fix: bun project detection not checking text lockfile --- bin/detect | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/detect b/bin/detect index 2759610..389a959 100755 --- a/bin/detect +++ b/bin/detect @@ -1,6 +1,6 @@ #!/bin/bash -if [ -f $1/bun.lockb ]; then +if [ -f $1/bun.lockb ] || [ -f $1/bun.lock ]; then echo "Bun" exit 0 else