Skip to content

Commit a0c287e

Browse files
committed
fix docker path
1 parent be0eeed commit a0c287e

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

Taskfile.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# See https://taskfile.dev/usage/
12
version: '3'
23

34
env:

docs/CONTRIBUTING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ We are building this software together and strongly encourage contributions from
66

77
## Requirements
88

9-
Go 1.22 or higher is required to run the driver test suite. We also use [task](https://taskfile.dev/) as our task runner.
9+
Go 1.22 or higher is required to run the driver test suite. We use [task](https://taskfile.dev/) as our task runner.
1010

1111
## Bug Fixes and New Features
1212

@@ -17,10 +17,10 @@ Before starting to write code, look for existing [tickets](https://jira.mongodb.
1717
The Go Driver team uses GitHub to manage and review all code changes. Patches should generally be made against the master (default) branch and include relevant tests, if
1818
applicable.
1919

20-
Code should compile and tests should pass under all Go versions which the driver currently supports. Currently the Go Driver supports a minimum version of Go 1.18 and requires Go 1.22 for development. Please run the following Taskfile targets to validate your changes:
20+
Code should compile and tests should pass under all Go versions which the driver currently supports. Currently the Go Driver supports a minimum version of Go 1.18 and requires Go 1.22 for development. Please run the following `Taskfile` targets to validate your changes:
2121

2222
- `task fmt`
23-
- `task lint` (requires [golangci-lint](https://github.com/golangci/golangci-lint) and [lll](https://github.com/walle/lll) to be installed and available in the `PATH`)
23+
- `task lint`
2424
- `task test`
2525
- `task test-race`
2626

etc/docker_entry.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ cd /src
99
rm -f test.suite
1010
cp -r $HOME/install ./install
1111

12-
export PATH="$MONGODB_BINARIES:$PATH"
12+
export PATH="$MONGODB_BINARIES:$GOPATH/bin:$PATH"
1313

1414
# Run the test.
1515
bash ./.evergreen/run-tests.sh

0 commit comments

Comments
 (0)