From d5b45cb58e332859b7b7e8cc8d622ede87b877a5 Mon Sep 17 00:00:00 2001 From: jeff Date: Fri, 16 Oct 2015 13:42:55 -0400 Subject: [PATCH] fix docs --- doc/build.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/doc/build.md b/doc/build.md index 4fd494c..21fb93d 100644 --- a/doc/build.md +++ b/doc/build.md @@ -27,7 +27,7 @@ Debian Jessie has go 1.3, we need 1.4 or higher to build the nntpchan daemon so cd $HOME/local # obtain and unpack go binary distribution - wget https://storage.googleapis.com/golang/go1.4.2.linux-amd64.tar.gz -O go-stable.tar.gz + wget https://storage.googleapis.com/golang/go1.5.1.linux-amd64.tar.gz -O go-stable.tar.gz tar -xzvf go-stable.tar.gz # set up environmental variables for go @@ -46,12 +46,11 @@ We'll also need to install some dependancies that come with debian: # as root apt update - apt install imagemagick libsodium-dev ffmpegthumbnailer sox + apt-get --no-install-recommends install imagemagick libsodium-dev ffmpegthumbnailer sox build-essential Now build the daemon: - go get github.com/majestrate/srndv2 - go install github.com/majestrate/srndv2 + go get -u github.com/majestrate/srndv2 It will create an executable at $GOPATH/bin/srndv2 which is already in our $PATH so it can be run by typing ``srndv2``