Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dream-server/scripts/check-offline-models.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Dream Server Offline Mode - Model Pre-download Check
# Verifies required models exist before starting services

set -e
set -euo pipefail

SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
DREAM_DIR="$(cd "$SCRIPT_DIR/.." && pwd)"
Expand Down
2 changes: 1 addition & 1 deletion dream-server/scripts/dream-preflight.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# dream-preflight.sh — Quick health check before first chat
# Usage: ./scripts/dream-preflight.sh

set -e
set -euo pipefail

SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
cd "$SCRIPT_DIR"
Expand Down
2 changes: 1 addition & 1 deletion dream-server/scripts/first-boot-demo.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# Usage: ./first-boot-demo.sh [--all] [--quick]
# Mission: M5 (Clonable Dream Setup Server)

set -e
set -euo pipefail

#=============================================================================
# Colors
Expand Down
2 changes: 1 addition & 1 deletion dream-server/scripts/showcase.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Dream Server Interactive Showcase
# Demonstrates all capabilities in an interactive menu

set -e
set -euo pipefail

# Colors
RED='\033[0;31m'
Expand Down
Empty file modified dream-server/scripts/validate-manifests.sh
100644 → 100755
Empty file.
2 changes: 1 addition & 1 deletion dream-server/scripts/validate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Dream Server Validation Script
# Run after install to confirm everything is working

set -e
set -euo pipefail

GREEN='\033[0;32m'
RED='\033[0;31m'
Expand Down
Loading