11 lines
227 B
Bash
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"
|