8 lines
178 B
Bash
Executable File
8 lines
178 B
Bash
Executable File
#!/bin/bash
|
|
|
|
dlv_version=1.23.0
|
|
|
|
set -xe
|
|
|
|
CGO_ENABLED=0 GOBIN=/usr/local/bin/ go install -ldflags "-s -w -extldflags '-static'" github.com/go-delve/delve/cmd/dlv@v"$dlv_version"
|