summaryrefslogtreecommitdiff
path: root/scripts/newbitmaps/images/build_images
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/newbitmaps/images/build_images')
-rwxr-xr-xscripts/newbitmaps/images/build_images4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/newbitmaps/images/build_images b/scripts/newbitmaps/images/build_images
index 269d5e6c..5a74e03c 100755
--- a/scripts/newbitmaps/images/build_images
+++ b/scripts/newbitmaps/images/build_images
@@ -9,7 +9,7 @@
BACKGROUND_COLOR=white
# The only file that uses different scaling parameter.
-BACKGROUND_IMAGE=Background_white.bmp
+BACKGROUND_IMAGE=Background_white.png
die() {
echo "ERROR: $*" >&2
@@ -90,7 +90,7 @@ main() {
# Prepare images in current folder
# TODO(hungte) Deprecate arrow*.bmp by markup ◀ and ▶, and
# Url.bmp by <span foreground="blue">http://</span>.
- for X in $(ls *.bmp *.png assets/*.png); do
+ for X in *.png assets/*.png; do
if [ "$X" = "$BACKGROUND_IMAGE" ]; then
convert_to_bmp3 "$X" "$output" "$background_scale_param"
else