This repository was archived by the owner on Sep 9, 2020. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -9,6 +9,8 @@ BUG FIXES:
9
9
10
10
IMPROVEMENTS:
11
11
12
+ * Add template operations support in dep status template output.
13
+ ([ #1549 ] ( https://github.com/golang/dep/pull/1549 ) ).
12
14
* Reduce network access by trusting local source information and only pulling
13
15
from upstream when necessary ([ #1250 ] ( https://github.com/golang/dep/pull/1250 ) ).
14
16
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ dep status
53
53
54
54
dep status -f='{{if eq .Constraint "master"}}{{.ProjectRoot}} {{end}}'
55
55
56
- Display the list of package names constrained on the master branch.
56
+ Displays the list of package names constrained on the master branch.
57
57
The -f flag allows you to use Go templates along with it's various
58
58
constructs for formating the output data. Available flags are as follows:
59
59
` + availableTemplateVariables + `
@@ -68,7 +68,7 @@ Linux: dep status -dot | dot -T png | display
68
68
MacOS: dep status -dot | dot -T png | open -f -a /Applications/Preview.app
69
69
Windows: dep status -dot | dot -T png -o status.png; start status.png
70
70
71
- Generate a visual representation of the dependency tree using GraphViz.
71
+ Generates a visual representation of the dependency tree using GraphViz.
72
72
(Note: in order for this example to work you must first have graphviz
73
73
installed on your system)
74
74
You can’t perform that action at this time.
0 commit comments