blob: 448dff3f69a3f060257d63ec612b6483a5f3bc3b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
# SPDX-License-Identifier: AGPL-3.0-only
# SPDX-FileContributor: Runxi Yu <https://runxiyu.org>
set -eux
go get -t -u
go mod tidy
go get github.com/go-git/go-git/v5@main
|