Merge pull request #7321 from spurin/cleanup_containers

cleanup containers after use (post execution of icon rasterize.sh script), fix spacing
This commit is contained in:
Kubernetes Prow Robot 2023-05-26 02:25:15 -07:00 committed by GitHub
commit e768f93b4a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ for size in "${SIZES[@]}"; do
echo "[$counter/$total] Generating $output"
# Only specify the width, since we know heptagons are wider than they
# are tall. The tool will automatically retain the source aspect ratio.
docker run -v $(pwd)/svg:/convertor svgconvertor:latest $svg -w $size > $output
docker run --rm -v $(pwd)/svg:/convertor svgconvertor:latest $svg -w $size > $output
counter=$[$counter +1]
done
done