8 lines
189 B
Bash
8 lines
189 B
Bash
#!/bin/bash
|
|
|
|
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"
|