You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
router/docker/builder/scripts/upgrade_deps.sh

10 lines
213 B
Bash

#!/bin/bash
set -ex
go mod tidy -go=1.19
for i in $(find . -name 'main.go'); do
pushd $(dirname $i)
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go get -installsuffix cgo -ldflags="-w -s" -u ./...
popd
done