The old stage1 is now stage0.5, which at least suggests that it's not an entirely consistent stage in general
5 lines
136 B
Bash
Executable file
5 lines
136 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
bindir=$(dirname $0)
|
|
PATH="$bindir:$PATH" ${MAKE:-make} -f "$bindir/../share/lean/Makefile" "$@"
|