15 lines
409 B
Bash
15 lines
409 B
Bash
#!/bin/bash
|
|
|
|
CYAN='\033[0;36m'
|
|
NC='\033[0m'
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
|
|
printf "\n${CYAN}===== Initial Multi-Repo Status =====${NC}\n"
|
|
sh "$SCRIPT_DIR/multi_repo_status.sh"
|
|
|
|
printf "\n${CYAN}===== Interactive Fixer =====${NC}\n"
|
|
sh "$SCRIPT_DIR/multi_repo_interactive_fix.sh"
|
|
|
|
printf "\n${CYAN}===== Final Multi-Repo Status =====${NC}\n"
|
|
sh "$SCRIPT_DIR/multi_repo_status.sh" |