Skip to content

Commit

Permalink
Use go run instead of godo
Browse files Browse the repository at this point in the history
  • Loading branch information
anacrolix committed Jul 25, 2018
1 parent 68bf3cb commit 7ab51ee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion fs/test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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 .
Expand Down

0 comments on commit 7ab51ee

Please sign in to comment.