21 lines
630 B
Bash
Executable File
21 lines
630 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Point the site root at the latest release, falling back to nightly.
|
|
# rustdoc serves the crate under <crate>/, so the target includes that segment.
|
|
# Env: WWW_ROOT (default /srv/www), SITE_SLUG (default coursebank),
|
|
# CRATE (default coursebank).
|
|
|
|
set -euo pipefail
|
|
|
|
root="${WWW_ROOT:-/srv/www}/${SITE_SLUG:-coursebank}"
|
|
crate="${CRATE:-coursebank}"
|
|
|
|
if [ -e "$root/release/$crate/index.html" ]; then
|
|
target="release/$crate/"
|
|
else
|
|
target="nightly/$crate/"
|
|
fi
|
|
|
|
printf '%s\n' "<!doctype html><meta http-equiv=\"refresh\" content=\"0; url=${target}\">" > "$root/index.html"
|
|
echo "site root -> $target"
|
|
|