mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00

Git can track executable (0755) and non-executable (0644) file modes. This is a minor file permissions sync for the win32/build/mkico.sh (0755). [skip ci]
12 lines
221 B
Bash
Executable file
12 lines
221 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
convert php.svg -size 512x512 php.bmp
|
|
|
|
for I in 16 24 32 48 64 128 256;
|
|
do
|
|
convert php.bmp -scale ${I}x${I} php-ico-${I}.png;
|
|
done
|
|
|
|
convert -adjoin php-ico-* php.ico
|
|
|
|
rm -f php-ico-*.png php.bmp
|