mirror of
https://gogs.blitter.com/RLabs/xs
synced 2024-08-14 10:26:42 +00:00
Avoid dependence on goproxy (use vendored deps)
This commit is contained in:
parent
7a4560762d
commit
677172dc1f
1 changed files with 6 additions and 4 deletions
|
@ -29,15 +29,17 @@ ls
|
|||
stage "Build"
|
||||
############
|
||||
echo "Recreating go.mod from scratch ..."
|
||||
mv go.mod go.mod.git || true
|
||||
mv go.sum go.sum.git || true
|
||||
go mod init
|
||||
go mod tidy
|
||||
#!mv go.mod go.mod.git || true
|
||||
#!mv go.sum go.sum.git || true
|
||||
#!go mod init
|
||||
#!go mod tidy
|
||||
|
||||
echo "Cleaning go mod cache ..."
|
||||
go clean -modcache
|
||||
echo "Cleaning go cache ..."
|
||||
go clean -cache
|
||||
echo "Invoking 'make clean' ..."
|
||||
make clean
|
||||
echo "Invoking 'make all' ..."
|
||||
make all
|
||||
|
||||
|
|
Loading…
Reference in a new issue