Skip to content

Commit 574c0b7

Browse files
committed
fix(router): fix tarball verification
When comparing checksums, there must be two spaces between the hash and the filename.
1 parent e95c146 commit 574c0b7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

router/build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ function get_src {
1616
f=$(basename $url)
1717

1818
curl -sSL $url -o $f
19-
echo "$hash $f" | sha256sum -c - || exit 10
19+
echo "$hash $f" | sha256sum -c - || exit 10
2020
tar xzf $f
2121
rm $f
2222
}

0 commit comments

Comments
 (0)