From 9ed4209c8b214e9199fd72af84f33511b1bc530e Mon Sep 17 00:00:00 2001 From: MichaelLud1AI <79793838+MichaelLud1AI@users.noreply.github.com> Date: Tue, 5 May 2026 09:32:25 -0400 Subject: [PATCH] Fix git-lfs missing check in run_dev.sh Signed-off-by: MichaelLud1AI <79793838+MichaelLud1AI@users.noreply.github.com> --- scripts/run_dev.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/scripts/run_dev.sh b/scripts/run_dev.sh index 86f08e54..d521ea2e 100755 --- a/scripts/run_dev.sh +++ b/scripts/run_dev.sh @@ -138,9 +138,8 @@ if [[ -z "$(docker ps)" ]] ; then fi # Check if git-lfs is installed. -git lfs &>/dev/null -if [[ $? -ne 0 ]] ; then - print_error "git-lfs is not insalled. Please make sure git-lfs is installed before you clone the repo." +if ! git lfs &>/dev/null; then + print_error "git-lfs is not installed. Please make sure git-lfs is installed before you clone the repo." exit 1 fi