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