mirror of
https://github.com/dredx/prole.git
synced 2026-09-23 12:03:59 +00:00
9 lines
226 B
Bash
9 lines
226 B
Bash
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
# Backward-compat wrapper for a common misspelling.
|
|
# Prefer: etc/init_forgejo.sh
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
exec bash "$SCRIPT_DIR/init_forgejo.sh" "$@"
|