File tree Expand file tree Collapse file tree 4 files changed +15
-2
lines changed
Expand file tree Collapse file tree 4 files changed +15
-2
lines changed Original file line number Diff line number Diff line change @@ -221,7 +221,10 @@ install.tools: .install.gitvalidation .install.gometalinter .install.md2man
221221
222222.install.md2man : .gopathok
223223 if [ ! -x " $( GOPATH) /bin/go-md2man" ]; then \
224- go get -u github.com/cpuguy83/go-md2man; \
224+ go get -u -d github.com/cpuguy83/go-md2man; \
225+ cd $(GOPATH ) /src/github.com/cpuguy83/go-md2man; \
226+ git checkout 20f5889cbdc3c73dbd2862796665e7c465ade7d1; \
227+ $(GO ) install github.com/cpuguy83/go-md2man; \
225228 fi
226229
227230.install.ostree : .gopathok
Original file line number Diff line number Diff line change 88 _ "net/http/pprof"
99 "os"
1010 "os/signal"
11+ "path/filepath"
1112 "sort"
1213 "strings"
1314 "time"
@@ -430,6 +431,10 @@ func main() {
430431 return fmt .Errorf ("invalid --runtime value %q" , err )
431432 }
432433
434+ if err := os .MkdirAll (filepath .Dir (config .Listen ), 0755 ); err != nil {
435+ return err
436+ }
437+
433438 // Remove the socket if it already exists
434439 if _ , err := os .Stat (config .Listen ); err == nil {
435440 if err := os .Remove (config .Listen ); err != nil {
Original file line number Diff line number Diff line change 3434 - integration
3535 - e2e
3636 tasks :
37+ - name : fixup go-md2man
38+ shell : |
39+ cd {{ ansible_env.GOPATH }}/src/github.com/cpuguy83/go-md2man
40+ git checkout 20f5889cbdc3c73dbd2862796665e7c465ade7d1
41+ go install github.com/cpuguy83/go-md2man
3742 - name : clone build and install cri-o
3843 include : " build/cri-o.yml"
3944
Original file line number Diff line number Diff line change 11package version
22
33// Version is the version of the build.
4- const Version = "1.0.9 -dev"
4+ const Version = "1.0.10 -dev"
You can’t perform that action at this time.
0 commit comments