mirror of
https://github.com/github/semantic.git
synced 2024-12-04 20:27:03 +03:00
12 lines
351 B
Bash
12 lines
351 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
# This file is invoked by ghcide to load the packages
|
||
|
# required to load the semantic monorepo into ghci.
|
||
|
# You generally shouldn't need to modify it.
|
||
|
|
||
|
set -euo pipefail
|
||
|
bazel build //:hie-bios --output_groups=hie_bios
|
||
|
cat bazel-bin/hie-bios@hie-bios >"$HIE_BIOS_OUTPUT"
|
||
|
# Make warnings non-fatal
|
||
|
echo -Wwarn >>"$HIE_BIOS_OUTPUT"
|