From aa6ee4d40ec6d7bc0d63b3fce632b1da2fc59ac7 Mon Sep 17 00:00:00 2001 From: Scott Register Date: Sat, 26 Jul 2025 07:49:24 -0700 Subject: [PATCH] no double clone --- RUNPOD_DEPLOYMENT.md | 3 +-- runpod_setup.sh | 8 -------- 2 files changed, 1 insertion(+), 10 deletions(-) diff --git a/RUNPOD_DEPLOYMENT.md b/RUNPOD_DEPLOYMENT.md index 3ac2914..fdee962 100644 --- a/RUNPOD_DEPLOYMENT.md +++ b/RUNPOD_DEPLOYMENT.md @@ -17,8 +17,7 @@ cd /workspace git clone https://github.com/YOUR_USERNAME/sam2e.git cd sam2e -# Make setup script executable and run -chmod +x runpod_setup.sh +# Run setup script (already executable in git) ./runpod_setup.sh # Install SAM2 separately (not on PyPI) diff --git a/runpod_setup.sh b/runpod_setup.sh index 7f018d6..865b4db 100644 --- a/runpod_setup.sh +++ b/runpod_setup.sh @@ -9,14 +9,6 @@ echo "" echo "📦 Installing system dependencies..." apt-get update && apt-get install -y ffmpeg git wget nano -# Clone your repository (replace with your actual repo URL) -cd /workspace -if [ ! -d "sam2e" ]; then - echo "📥 Cloning repository..." - git clone https://git.10n.app/scott/test2.git -fi -cd sam2e - # Install Python dependencies echo "🐍 Installing Python dependencies..." pip install --upgrade pip