mirror of
https://github.com/imjasonh/terraform-playground
synced 2026-07-16 20:54:50 +00:00
15 lines
255 B
Bash
15 lines
255 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
|
||
|
|
# Copyright 2022 Chainguard, Inc.
|
||
|
|
# SPDX-License-Identifier: Apache-2.0
|
||
|
|
|
||
|
|
set -o errexit
|
||
|
|
set -o nounset
|
||
|
|
set -o pipefail
|
||
|
|
|
||
|
|
REPO_ROOT_DIR=$(dirname "$0")/..
|
||
|
|
pushd ${REPO_ROOT_DIR}
|
||
|
|
|
||
|
|
echo === Update Deps for Golang
|
||
|
|
go mod tidy -compat=1.17
|