Skip to content

Commit

Permalink
Release 0.30.1 (2023-06-27)
Browse files Browse the repository at this point in the history
* Use = for --env flag
* Use = for --env flag for all tools

Bug: N/A
Change-Id: I7cf8109b4ebcdf73ab0cf0eebc8c9c64db007a20
GitOrigin-RevId: ce605e253c75aab659cf6c7e75775d7408e21649
  • Loading branch information
Privacy Sandbox Team authored and Andrew-Dame committed Jun 28, 2023
1 parent 7476ea0 commit ff23878
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 6 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)


Expand Down
2 changes: 1 addition & 1 deletion tools/aws-cli
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tools/awscurl
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tools/cbuild
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion tools/pre-commit
Original file line number Diff line number Diff line change
Expand Up @@ -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 "$@"
Expand Down
2 changes: 1 addition & 1 deletion tools/terraform
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.30.0
0.30.1

0 comments on commit ff23878

Please sign in to comment.