We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad97513 commit 999a8bfCopy full SHA for 999a8bf
.ghcide
@@ -1,4 +1,13 @@
1
#!/usr/bin/env bash
2
set -euo pipefail
3
-bazel build @ghcide//:ghcide
4
-bazel-bin/external/ghcide/_install/bin/ghcide "$@"
+build_ghcide() {
+ bazel build @ghcide//:ghcide \
5
+ --experimental_show_artifacts \
6
+ 2>&1 \
7
+ | awk '
8
+ /^>>>/ { print substr($1, 4); next }
9
+ { print $0 > "/dev/stderr" }
10
+ '
11
+}
12
+ghcide="$(build_ghcide)"
13
+"$ghcide" "$@"
0 commit comments