🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
14 lines
550 B
Bash
Executable File
14 lines
550 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Skript zum Herunterladen der vollständigen Bootstrap CSS
|
|
|
|
# Verzeichnis erstellen falls es nicht existiert
|
|
mkdir -p "$(dirname "$0")/static/css"
|
|
|
|
# Bootstrap CSS herunterladen
|
|
wget -O "$(dirname "$0")/static/css/bootstrap.css" https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.css
|
|
|
|
# Optional: JavaScript-Datei auch herunterladen
|
|
wget -O "$(dirname "$0")/static/js/bootstrap.bundle.js" https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.js
|
|
|
|
echo "Bootstrap-Dateien wurden erfolgreich heruntergeladen." |