mirror of
https://github.com/rclone/rclone.git
synced 2024-11-07 17:14:44 +01:00
aed77a8fb2
The latter is more portable, while the former only works on systems where /bin/bash exists (or is symlinked appropriately).
24 lines
390 B
Bash
Executable File
24 lines
390 B
Bash
Executable File
#!/usr/bin/env 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 || exit 125
|
|
|
|
# Make sure we are using it
|
|
source ~/bin/use-go1.11
|
|
go version
|
|
|
|
# Compile rclone
|
|
cd ~/go/src/github.com/rclone/rclone
|
|
make
|
|
|
|
# run the failing test
|
|
go run -race race.go
|