7 lines
120 B
Bash
7 lines
120 B
Bash
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
ROOT_DIR="$(cd "$(dirname "$0")/../.." && pwd)"
|
|
"$ROOT_DIR/tools/bin/hako" "$@"
|
|
|