mirror of
https://github.com/tomoko-dev9/nntpchan.git
synced 2026-03-28 17:32:35 +01:00
9 lines
183 B
Bash
Executable File
9 lines
183 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
root=$(readlink -e $(dirname $0))
|
|
cd $root
|
|
export GOPATH=$root/go
|
|
mkdir -p $GOPATH
|
|
go get -v -u github.com/majestrate/srndv2
|
|
cp -a $GOPATH/bin/srndv2 $root
|