4 lines
139 B
Bash
Executable file
4 lines
139 B
Bash
Executable file
#!/bin/sh
|
|
|
|
go build -gcflags="all=-N -l" -o /tmp/app
|
|
dlv --listen=:4001 --headless=true --api-version=2 --accept-multiclient exec /tmp/app
|