deps: update

This commit is contained in:
Anmol Sethi 2022-12-06 08:00:14 -08:00
parent d9353ad142
commit 651c7f553f
No known key found for this signature in database
GPG key ID: 8CEF1878FF10ADEB
5 changed files with 6 additions and 6 deletions

View file

@ -356,7 +356,7 @@ LIB_RELEASE=1
ensure_os() {
if [ -n "${OS-}" ]; then
# Windows defines OS=Windows_NT.
if [ "$OS" == Windows_NT ]; then
if [ "$OS" = Windows_NT ]; then
OS=windows
fi
return

2
ci/sub

@ -1 +1 @@
Subproject commit 718a738a16a9de19ec8d5f9654a9bb94546d8898
Subproject commit c186afdcc1a6ef8a8f6202df2cb3fd89f104a567

2
go.mod generated
View file

@ -21,7 +21,7 @@ require (
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2
gonum.org/v1/plot v0.12.0
nhooyr.io/websocket v1.8.7
oss.terrastruct.com/util-go v0.0.0-20221206155454-a67f9d90bd68
oss.terrastruct.com/util-go v0.0.0-20221206160008-389a7ae4c73a
)
require (

4
go.sum generated
View file

@ -806,8 +806,8 @@ honnef.co/go/tools v0.0.1-2020.1.3/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9
honnef.co/go/tools v0.0.1-2020.1.4/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k=
nhooyr.io/websocket v1.8.7 h1:usjR2uOr/zjjkVMy0lW+PPohFok7PCow5sDjLgX4P4g=
nhooyr.io/websocket v1.8.7/go.mod h1:B70DZP8IakI65RVQ51MsWP/8jndNma26DVA/nFSCgW0=
oss.terrastruct.com/util-go v0.0.0-20221206155454-a67f9d90bd68 h1:OgcftYTd0YghWtlAd7aw+yS6XPGCMW5s+JXi6RrSm9I=
oss.terrastruct.com/util-go v0.0.0-20221206155454-a67f9d90bd68/go.mod h1:Fwy72FDIOOM4K8F96ScXkxHHppR1CPfUyo9+x9c1PBU=
oss.terrastruct.com/util-go v0.0.0-20221206160008-389a7ae4c73a h1:u1DSn9hub5atmwgjfqInMlQp1dUof42jvq9sXQ954iE=
oss.terrastruct.com/util-go v0.0.0-20221206160008-389a7ae4c73a/go.mod h1:Fwy72FDIOOM4K8F96ScXkxHHppR1CPfUyo9+x9c1PBU=
rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8=
rsc.io/pdf v0.1.1 h1:k1MczvYDUvJBe93bYd7wrZLLUEcLZAuF824/I4e5Xr4=
rsc.io/quote/v3 v3.1.0/go.mod h1:yEA65RcK8LyAZtP9Kv3t0HmxON59tX3rD+tICJqUlj0=

View file

@ -492,7 +492,7 @@ LIB_RELEASE=1
ensure_os() {
if [ -n "${OS-}" ]; then
# Windows defines OS=Windows_NT.
if [ "$OS" == Windows_NT ]; then
if [ "$OS" = Windows_NT ]; then
OS=windows
fi
return