fork of https://github.com/sourcegraph/zoekt
0

Configure Feed

Select the types of activity you want to include in your feed.

disable shellcheck for pipefail

We want pipefail behavior and in practice this seems to work in busybox
sh.

+2 -1
+2 -1
install-ctags-alpine.sh
··· 1 1 #!/bin/sh 2 2 set -eux 3 - set -o pipefail 3 + # shellcheck disable=SC3040 4 + set -o pipefail || true 4 5 # Commit from 2022-04-05. Please always pick a commit from the main branch. 5 6 export SOURCEGRAPH_COMMIT=4dd4ce3d91da5cac2ac6169d3005714247178f57 6 7 wget -O - https://raw.githubusercontent.com/sourcegraph/sourcegraph/$SOURCEGRAPH_COMMIT/cmd/symbols/ctags-install-alpine.sh | sh