Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 8220b32

Browse files
authoredMay 22, 2020
[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.
1 parent b378a6a commit 8220b32

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed
 

‎docsgen/go.mod

Lines changed: 3 additions & 1 deletion
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)
Please sign in to comment.