File tree Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Expand file tree Collapse file tree 4 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ require (
43
43
github.com/jwilder/encoding v0.0.0-20170811194829-b4e1701a28ef
44
44
github.com/kevinburke/go-bindata v3.22.0+incompatible
45
45
github.com/mattn/go-isatty v0.0.19
46
- github.com/mattn/go-sqlite3 v1.14.18
46
+ github.com/mattn/go-sqlite3 v1.14.22
47
47
github.com/matttproud/golang_protobuf_extensions v1.0.4
48
48
github.com/mileusna/useragent v0.0.0-20190129205925-3e331f0949a5
49
49
github.com/mna/pigeon v1.0.1-0.20180808201053-bb0192cfc2ae
Original file line number Diff line number Diff line change @@ -700,8 +700,8 @@ github.com/mattn/go-runewidth v0.0.2/go.mod h1:LwmH8dsx7+W8Uxz3IHJYH5QSwggIsqBzp
700
700
github.com/mattn/go-runewidth v0.0.13 h1:lTGmDsbAYt5DmK6OnoV7EuIF1wEIFAcxld6ypU4OSgU =
701
701
github.com/mattn/go-runewidth v0.0.13 /go.mod h1:Jdepj2loyihRzMpdS35Xk/zdY8IAYHsh153qUoGf23w =
702
702
github.com/mattn/go-sqlite3 v1.14.6 /go.mod h1:NyWgC/yNuGj7Q9rpYnZvas74GogHl5/Z4A/KQRfk6bU =
703
- github.com/mattn/go-sqlite3 v1.14.18 h1:JL0eqdCOq6DJVNPSvArO/bIV9/P7fbGrV00LZHc+5aI =
704
- github.com/mattn/go-sqlite3 v1.14.18 /go.mod h1:2eHXhiwb8IkHr+BDWZGa96P6+rkvnG63S2DGjv9HUNg =
703
+ github.com/mattn/go-sqlite3 v1.14.22 h1:2gZY6PC6kBnID23Tichd1K+Z0oS6nE/XwU+Vz/5o4kU =
704
+ github.com/mattn/go-sqlite3 v1.14.22 /go.mod h1:Uh1q+B4BYcTPb+yiD3kU8Ct7aC0hY9fxUwlHK0RXw+Y =
705
705
github.com/mattn/go-tty v0.0.4 h1:NVikla9X8MN0SQAqCYzpGyXv0jY7MNl3HOWD2dkle7E =
706
706
github.com/mattn/go-tty v0.0.4 /go.mod h1:u5GGXBtZU6RQoKV8gY5W6UhMudbR5vXnUe7j3pxse28 =
707
707
github.com/matttproud/golang_protobuf_extensions v1.0.1 /go.mod h1:D8He9yQNgCq6Z5Ld7szi9bcBfOoFv/3dc6xSMkL2PC0 =
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ function download_older_binary () {
29
29
30
30
local -r archive=" influxd-${target_version} .tar.gz"
31
31
curl -sL -o " ${dl_dir} /${archive} " " $dl_url "
32
- echo " ${dl_sha} ${dl_dir} /${archive} " | sha256sum --check --
32
+ echo " ${dl_sha} ${dl_dir} /${archive} " | sha256sum -c --
33
33
tar xzf " ${dl_dir} /${archive} " -C " $dl_dir " --strip-components=1
34
34
rm " ${dl_dir} /${archive} "
35
35
mv " ${dl_dir} /influxd" " ${dl_dir} /influxd-${target_version} "
Original file line number Diff line number Diff line change @@ -31,10 +31,10 @@ curl -L https://github.com/influxdata/ui/releases/download/$UI_RELEASE/build.tar
31
31
# Verify the checksums match; exit if they don't.
32
32
case " $( uname -s) " in
33
33
FreeBSD | Darwin)
34
- echo " $( cat sha256.txt) " | shasum --algorithm 256 --check \
34
+ echo " $( cat sha256.txt) " | shasum --algorithm 256 -c \
35
35
|| { echo " Checksums did not match for downloaded UI assets!" ; exit 1; } ;;
36
36
Linux)
37
- echo " $( cat sha256.txt) " | sha256sum --check -- \
37
+ echo " $( cat sha256.txt) " | sha256sum -c -- \
38
38
|| { echo " Checksums did not match for downloaded UI assets!" ; exit 1; } ;;
39
39
* )
40
40
echo " The '$( uname -s) ' operating system is not supported as a build host for the UI" >&2
You can’t perform that action at this time.
0 commit comments