apps-gitops/automation/clone_repos.sh
2025-06-23 00:29:19 +03:00

11 lines
227 B
Bash

#!/bin/bash
echo "Cloning from $INFRA_REPO_URL"
echo "📦 Cloning sandbox-apps..."
git clone --depth=1 "$SANDBOX_REPO_URL" "$SANDBOX_CLONE"
echo "📦 Cloning infra..."
git clone --depth=1 "$INFRA_REPO_URL" "$INFRA_CLONE"