From ff23878605b704831d074b77131ec4284b2ed194 Mon Sep 17 00:00:00 2001 From: Privacy Sandbox Team Date: Tue, 27 Jun 2023 17:33:58 +0000 Subject: [PATCH] Release 0.30.1 (2023-06-27) * Use = for --env flag * Use = for --env flag for all tools Bug: N/A Change-Id: I7cf8109b4ebcdf73ab0cf0eebc8c9c64db007a20 GitOrigin-RevId: ce605e253c75aab659cf6c7e75775d7408e21649 --- CHANGELOG.md | 8 ++++++++ tools/aws-cli | 2 +- tools/awscurl | 2 +- tools/cbuild | 2 +- tools/pre-commit | 2 +- tools/terraform | 2 +- version.txt | 2 +- 7 files changed, 14 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c80b406..07d5709 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines. +## 0.30.1 (2023-06-27) + + +### Bug Fixes + +* Use = for --env flag +* Use = for --env flag for all tools + ## 0.30.0 (2023-06-26) diff --git a/tools/aws-cli b/tools/aws-cli index a34aac2..3301d27 100755 --- a/tools/aws-cli +++ b/tools/aws-cli @@ -46,7 +46,7 @@ DOCKER_RUN_ARGS+=( for evar in "${ENV_VARS[@]}" do DOCKER_RUN_ARGS+=( - "--env ${evar}" + "--env=${evar}" ) done if [[ -t 0 ]] && [[ -t 1 ]]; then diff --git a/tools/awscurl b/tools/awscurl index 6fe4145..1f78394 100755 --- a/tools/awscurl +++ b/tools/awscurl @@ -48,7 +48,7 @@ DOCKER_RUN_ARGS+=( for evar in "${ENV_VARS[@]}" do DOCKER_RUN_ARGS+=( - --env "${evar}" + "--env=${evar}" ) done if [[ -t 0 ]] && [[ -t 1 ]]; then diff --git a/tools/cbuild b/tools/cbuild index 4e4bed3..5fabefa 100755 --- a/tools/cbuild +++ b/tools/cbuild @@ -166,7 +166,7 @@ fi for evar in "${ENV_VARS[@]}" do DOCKER_RUN_ARGS+=( - "--env ${evar}" + "--env=${evar}" ) done if [[ -t 0 ]] && [[ -t 1 ]]; then diff --git a/tools/pre-commit b/tools/pre-commit index dc17157..be8c5c7 100755 --- a/tools/pre-commit +++ b/tools/pre-commit @@ -143,7 +143,7 @@ if [[ $# -gt 0 ]]; then --entrypoint=/usr/pre-commit-venv/bin/pre-commit \ --volume "${WORKSPACE}":/src/workspace \ -v /var/run/docker.sock:/var/run/docker.sock \ - --env "${SKIP_ENV}" \ + --env="${SKIP_ENV}" \ --workdir /src/workspace \ "${IMAGE_TAGGED}" \ "${PRECOMMIT_CMD}" --config ./.pre-commit-config.yaml "$@" diff --git a/tools/terraform b/tools/terraform index 5b096c5..8c89641 100755 --- a/tools/terraform +++ b/tools/terraform @@ -44,7 +44,7 @@ declare -a DOCKER_RUN_ARGS=( for evar in "${ENV_VARS[@]}" do DOCKER_RUN_ARGS+=( - "--env ${evar}" + "--env=${evar}" ) done if [[ -t 0 ]] && [[ -t 1 ]]; then diff --git a/version.txt b/version.txt index 065d469..6a93205 100644 --- a/version.txt +++ b/version.txt @@ -1 +1 @@ -0.30.0 \ No newline at end of file +0.30.1 \ No newline at end of file