From 20fdfbbff854328105ea5ff4365ea78497b59f21 Mon Sep 17 00:00:00 2001 From: abhishekbhakat Date: Wed, 18 Feb 2026 00:49:32 +0530 Subject: [PATCH] Add installation check for colgrep in install script --- install.sh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/install.sh b/install.sh index 084c7c2..62d04a8 100755 --- a/install.sh +++ b/install.sh @@ -5,3 +5,11 @@ mkdir -p ~/.factory rsync -av .factory/ ~/.factory/ echo "Installed .factory to ~/.factory" + +# Install colgrep if not already installed +if ! command -v colgrep &> /dev/null; then + echo "Installing colgrep..." + curl --proto '=https' --tlsv1.2 -LsSf https://github.com/lightonai/next-plaid/releases/latest/download/colgrep-installer.sh | sh +else + echo "colgrep is already installed, skipping." +fi