26 lines
463 B
Bash
Executable File
26 lines
463 B
Bash
Executable File
#!/bin/bash
|
|
# ODS Root Installer
|
|
# Delegates to ods/install.sh
|
|
|
|
set -euo pipefail
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
|
|
# Colors
|
|
CYAN='\033[0;36m'
|
|
NC='\033[0m'
|
|
|
|
echo -e "${CYAN}ODS Installer${NC}"
|
|
echo ""
|
|
|
|
# Check if ods directory exists
|
|
if [ ! -d "$SCRIPT_DIR/ods" ]; then
|
|
echo "Error: ods directory not found"
|
|
echo "Expected: $SCRIPT_DIR/ods"
|
|
exit 1
|
|
fi
|
|
|
|
# Delegate to ods installer
|
|
cd "$SCRIPT_DIR/ods"
|
|
exec ./install.sh "$@"
|