6 lines
190 B
Bash
Executable file
6 lines
190 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
# Back-compat shim. Prefer `scripts/fj-auth-forge.sh`.
|
|
root="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
|
|
exec "${root}/scripts/fj-auth-forge.sh"
|