From 7ab51ee28368aab9458d9cc2c8a580d7fb4bce72 Mon Sep 17 00:00:00 2001 From: Matt Joiner Date: Wed, 25 Jul 2018 20:34:19 +1000 Subject: [PATCH] Use go run instead of godo --- .circleci/config.yml | 2 +- fs/test.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index a48ec9c2..958ff2e2 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -29,6 +29,6 @@ jobs: - run: go install golang.org/x/mobile/cmd/gomobile - run: gomobile init - run: gomobile build -target=android $PROJECT_GO_PACKAGE - - run: go install github.com/anacrolix/godo + # - run: GO111MODULE=off go install github.com/anacrolix/godo - run: sudo modprobe fuse - run: fs/test.sh diff --git a/fs/test.sh b/fs/test.sh index 84dffcb7..75185273 100755 --- a/fs/test.sh +++ b/fs/test.sh @@ -3,7 +3,7 @@ repopath=$(cd $(dirname $0)/..; pwd) d=$(mktemp -d) pushd "$d" mkdir mnt torrents -GOPPROF=http godo github.com/anacrolix/torrent/cmd/torrentfs -mountDir=mnt -metainfoDir=torrents & +GOPPROF=http go run github.com/anacrolix/torrent/cmd/torrentfs -mountDir=mnt -metainfoDir=torrents & trap 'set +e; sudo umount -f mnt; pushd; rm -rv "$d"' EXIT pushd torrents cp "$repopath"/testdata/debian-9.1.0-amd64-netinst.iso.torrent . -- 2.48.1