Skip to content

Commit

Permalink
Fix RC CI
Browse files Browse the repository at this point in the history
Signed-off-by: Luke Shumaker <[email protected]>
  • Loading branch information
LukeShu committed Jun 2, 2022
1 parent b97018e commit c079729
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions build-aux/main.mk
Original file line number Diff line number Diff line change
Expand Up @@ -192,9 +192,9 @@ clobber: clean

clean: build-output.rm-r

python.clean: %.clean: python/ambassador.egg-info.rm-r
python.clean releng.clean: %.clean: python/ambassador.egg-info.rm-r
find $* -name __pycache__ -exec rm -rf -- {} +
clean: python.clean
clean: python.clean releng.clean

cmd.clean pkg.clean: %.clean:
find $* -name '*.yaml.o' -delete
Expand Down
2 changes: 1 addition & 1 deletion docs/publish_yaml_s3.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ errusage() {
[[ -d "$1" ]] || errusage 'DIR is not a directory: %q' "$dir"
[[ -n "$AWS_ACCESS_KEY_ID" ]] || errusage "AWS_ACCESS_KEY_ID is not set"
[[ -n "$AWS_SECRET_ACCESS_KEY" ]] || errusage "AWS_SECRET_ACCESS_KEY is not set"
[[ "${VERSION:-}" != v2.* ]] || errusage "VERSION must be set to a 'v2.*' string"
[[ "${VERSION:-}" == v2.* ]] || errusage "VERSION must be set to a 'v2.*' string"
dir=$1
while [[ "$dir" == */ ]]; do
dir=${dir%/}
Expand Down

0 comments on commit c079729

Please sign in to comment.