mirror of
https://github.com/dokku/dokku.git
synced 2026-09-01 19:49:25 +02:00
13 lines
387 B
Bash
Executable File
13 lines
387 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
pushd /root/go/src/github.com/dokku/dokku/plugins/ >/dev/null || exit 1
|
|
for plugin in *; do
|
|
if [[ ! -f "/root/go/src/github.com/dokku/dokku/plugins/$plugin/go.mod" ]]; then continue; fi
|
|
echo "$plugin"
|
|
pushd /root/go/src/github.com/dokku/dokku/plugins/$plugin || exit 1
|
|
go mod tidy
|
|
go mod download
|
|
popd >/dev/null || exit 1
|
|
done
|
|
popd >/dev/null || exit 1
|