1
0
mirror of https://github.com/rclone/rclone.git synced 2026-01-07 11:03:15 +00:00

Require go v1.5 for compilation

Google cloud package requires go v1.5 to compile, so we need to require the same for rclone.

Fixes #408
This commit is contained in:
Klaus Post
2016-03-28 12:36:52 +02:00
committed by Nick Craig-Wood
parent 6cc9c09610
commit 7f2e9d9a6b
4 changed files with 15 additions and 10 deletions

View File

@@ -1,8 +1,8 @@
---
title: "Install"
description: "Rclone Installation"
date: "2015-06-12"
---
date: "2016-03-28"
------------------
Install
-------
@@ -11,15 +11,15 @@ Rclone is a Go program and comes as a single binary file.
[Download](/downloads/) the relevant binary.
Or alternatively if you have Go installed use
Or alternatively if you have Go 1.5+ installed use
go get github.com/ncw/rclone
and this will build the binary in `$GOPATH/bin`. If you have built
rclone before then you will want to update its dependencies first with
this (remove `-f` if using go < 1.4)
this
go get -u -v -f github.com/ncw/rclone/...
go get -u -v github.com/ncw/rclone/...
See the [Usage section](/docs/) of the docs for how to use rclone, or
run `rclone -h`.