From ad2ddbb029f03ccfe8face09b06713aeadb2ef6c Mon Sep 17 00:00:00 2001 From: Sarah Jamie Lewis Date: Thu, 25 Jun 2020 12:44:27 -0700 Subject: [PATCH] fix drone tor download --- .drone.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.drone.yml b/.drone.yml index 7a31148..c167109 100644 --- a/.drone.yml +++ b/.drone.yml @@ -10,9 +10,9 @@ pipeline: event: [ push, pull_request ] image: golang commands: - - wget https://git.openprivacy.ca/openprivacy/buildfiles/raw/master/tor/tor - - wget https://git.openprivacy.ca/openprivacy/buildfiles/raw/master/tor/torrc - - chmod a+x tor + - wget https://git.openprivacy.ca/openprivacy/buildfiles/raw/master/tor/tor -P tmp/ + - wget https://git.openprivacy.ca/openprivacy/buildfiles/raw/master/tor/torrc -P tmp/ + - chmod a+x tmp/tor - export GO111MODULE=on - go mod vendor - go get -u golang.org/x/lint/golint