10 lines
227 B
Bash
Executable File
10 lines
227 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Copyright 2023 Uber Technologies, Inc.
|
|
# Licensed under the Apache License, Version 2.0
|
|
set -eu
|
|
|
|
cd "$(git rev-parse --show-toplevel)/"
|
|
bazel run @go_sdk//:bin/go -- mod tidy
|
|
exec bazel run //:gazelle-update-repos
|