Skip to content

Commit e768f93

Browse files
authored
Merge pull request #7321 from spurin/cleanup_containers
cleanup containers after use (post execution of icon rasterize.sh script), fix spacing
2 parents 83985d5 + 605ff5f commit e768f93

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

icons/tools/rasterize.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ for size in "${SIZES[@]}"; do
1515
echo "[$counter/$total] Generating $output"
1616
# Only specify the width, since we know heptagons are wider than they
1717
# are tall. The tool will automatically retain the source aspect ratio.
18-
docker run -v $(pwd)/svg:/convertor svgconvertor:latest $svg -w $size > $output
18+
docker run --rm -v $(pwd)/svg:/convertor svgconvertor:latest $svg -w $size > $output
1919
counter=$[$counter +1]
2020
done
2121
done

0 commit comments

Comments
 (0)