Skip to content

Commit 2e8b1c3

Browse files
per1234rsora
authored and
rsora
committed
[skip changelog] Use local path for github.com/arduino/arduino-cli module dependency of docsgen (#719)
Previously, docsgen used a pinned version of the github.com/arduino/arduino-cli module, which resulted in the generated command documentation not reflecting updates to the Arduino CLI command line interface made after the pinned version. The new approach is to use the current version of the module from the local path, resulting in the generated documentation always matching the associated version of Arduino CLI. (cherry picked from commit 8220b32)
1 parent b54a924 commit 2e8b1c3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

docsgen/go.mod

+3-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@ module github.com/arduino/arduino-cli/docsgen
22

33
go 1.14
44

5+
replace github.com/arduino/arduino-cli => ../
6+
57
require (
6-
github.com/arduino/arduino-cli v0.0.0-20200228161349-4b874a02b096
8+
github.com/arduino/arduino-cli v0.0.0
79
github.com/spf13/cobra v0.0.6
810
)

0 commit comments

Comments
 (0)