6 lines
102 B
Bash
Executable file
6 lines
102 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
pushd $(mktemp -d)
|
|
go mod init temp
|
|
go install github.com/jackc/tern@latest
|
|
popd
|