File tree Expand file tree Collapse file tree 6 files changed +9
-5
lines changed Expand file tree Collapse file tree 6 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 18
18
19
19
- name : Git LFS pull
20
20
shell : bash
21
- run : git lfs pull
21
+ run : |
22
+ git lfs pull
23
+ git lfs prune
Original file line number Diff line number Diff line change @@ -23,4 +23,5 @@ echo darwin-flock ; GOOS=darwin GOARCH=amd64 go build -tags sqlite3_flock .
23
23
echo darwin-noshm ; GOOS=darwin GOARCH=amd64 go build -tags sqlite3_noshm .
24
24
echo darwin-nosys ; GOOS=darwin GOARCH=amd64 go build -tags sqlite3_nosys .
25
25
echo windows-nosys ; GOOS=windows GOARCH=amd64 go build -tags sqlite3_nosys .
26
- echo freebsd-nosys ; GOOS=freebsd GOARCH=amd64 go build -tags sqlite3_nosys .
26
+ echo freebsd-nosys ; GOOS=freebsd GOARCH=amd64 go build -tags sqlite3_nosys .
27
+ echo solaris-flock ; GOOS=solaris GOARCH=amd64 go build -tags sqlite3_flock .
Original file line number Diff line number Diff line change @@ -4,5 +4,6 @@ golang.org/x/net v0.21.0 h1:AQyQV4dYCvJ7vGmJyKki9+PBdyvhkSd8EIx/qb0AYv4=
4
4
golang.org/x/net v0.21.0 /go.mod h1:bIjVDfnllIU7BJ2DNgfnXvpSvtn8VRwhlsaeUTyUS44 =
5
5
golang.org/x/term v0.19.0 h1:+ThwsDv+tYfnJFhF4L8jITxu1tdTWRTZpdsWgEgjL6Q =
6
6
golang.org/x/term v0.19.0 /go.mod h1:2CuTdWZ7KHSQwUzKva0cbMg6q2DMI3Mmxp+gKJbskEk =
7
+ golang.org/x/term v0.20.0 /go.mod h1:8UkIAJTvZgivsXaD6/pH6U9ecQzZ45awqEOzuCvwpFY =
7
8
golang.org/x/tools v0.6.0 h1:BOw41kyTf3PuCW1pVQf8+Cyg8pMlkYB1oo9iJ6D/lKM =
8
9
golang.org/x/tools v0.6.0 /go.mod h1:Xwgl3UAJ/d3gWutnCtw505GrjyAbvKui8lOU390QaIU =
Original file line number Diff line number Diff line change 1
- //go:build (linux || darwin || windows || freebsd || openbsd || netbsd || dragonfly || illumos) && !sqlite3_nosys
1
+ //go:build (linux || darwin || windows || freebsd || openbsd || netbsd || dragonfly || illumos || sqlite3_flock ) && !sqlite3_nosys
2
2
3
3
package vfs
4
4
Original file line number Diff line number Diff line change 1
- //go:build !(linux || darwin || windows || freebsd || openbsd || netbsd || dragonfly || illumos) || sqlite3_nosys
1
+ //go:build !(linux || darwin || windows || freebsd || openbsd || netbsd || dragonfly || illumos || sqlite3_flock ) || sqlite3_nosys
2
2
3
3
package vfs
4
4
Original file line number Diff line number Diff line change 1
- //go:build (linux || darwin || freebsd || openbsd || netbsd || dragonfly || illumos) && !sqlite3_nosys
1
+ //go:build (linux || darwin || freebsd || openbsd || netbsd || dragonfly || illumos || sqlite3_flock ) && !sqlite3_nosys
2
2
3
3
package vfs
4
4
You can’t perform that action at this time.
0 commit comments