mirror of
https://github.com/rclone/rclone.git
synced 2024-11-07 17:14:44 +01:00
24 lines
367 B
Bash
Executable File
24 lines
367 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# An example script to run when bisecting go with git bisect -run when
|
|
# looking for an rclone regression
|
|
|
|
# Run this from the go root
|
|
|
|
set -e
|
|
|
|
# Compile the go version
|
|
cd src
|
|
./make.bash
|
|
|
|
# Make sure we are using it
|
|
source ~/bin/use-go1.11
|
|
go version
|
|
|
|
# Compile rclone
|
|
cd ~/go/src/github.com/ncw/rclone
|
|
make
|
|
|
|
# run the failing test
|
|
go run -race race.go
|