forked from sourcegraph/sourcegraph-public-snapshot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsg.doctor.yaml
37 lines (37 loc) · 884 Bytes
/
sg.doctor.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
diagnostics:
general:
- name: show current env
cmd: env
- name: show current path
cmd: pwd
- name: show current branch
cmd: git rev-parse --abbrev-ref HEAD
- name: show current commit
cmd: git rev-parse HEAD
- name: show os kernel
cmd: uname -a
bazel:
- name: architecture
cmd: file -L $(which bazel)
- name: where is bazel
cmd: which bazel
- name: bazel info
cmd: bazel info
go:
- name: architecture
cmd: file -L $(which go)
- name: where is go
cmd: which go
- name: version of go
cmd: go version
node:
- name: architecture
cmd: file -L $(which node)
- name: where is node
cmd: which node
- name: version of node
cmd: node --version
- name: version of pnpm
cmd: pnpm --version
- name: where is pnpm
cmd: which pnpm