From 6f6f524f1a916f9aefe5e1ab102efebdab007530 Mon Sep 17 00:00:00 2001 From: Wladimir J. van der Laan Date: Sat, 14 Apr 2012 18:32:30 +0200 Subject: [PATCH] Rename make_windows_icon.py to .sh as it is a shell script (fixes #1099) --- share/qt/make_windows_icon.py | 9 --------- share/qt/make_windows_icon.sh | 9 +++++++++ 2 files changed, 9 insertions(+), 9 deletions(-) delete mode 100755 share/qt/make_windows_icon.py create mode 100755 share/qt/make_windows_icon.sh diff --git a/share/qt/make_windows_icon.py b/share/qt/make_windows_icon.py deleted file mode 100755 index bf607b1..0000000 --- a/share/qt/make_windows_icon.py +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/bash -# create multiresolution windows icon -ICON_SRC=../../src/qt/res/icons/bitcoin.png -ICON_DST=../../src/qt/res/icons/bitcoin.ico -convert ${ICON_SRC} -resize 16x16 bitcoin-16.png -convert ${ICON_SRC} -resize 32x32 bitcoin-32.png -convert ${ICON_SRC} -resize 48x48 bitcoin-48.png -convert bitcoin-16.png bitcoin-32.png bitcoin-48.png ${ICON_DST} - diff --git a/share/qt/make_windows_icon.sh b/share/qt/make_windows_icon.sh new file mode 100755 index 0000000..bf607b1 --- /dev/null +++ b/share/qt/make_windows_icon.sh @@ -0,0 +1,9 @@ +#!/bin/bash +# create multiresolution windows icon +ICON_SRC=../../src/qt/res/icons/bitcoin.png +ICON_DST=../../src/qt/res/icons/bitcoin.ico +convert ${ICON_SRC} -resize 16x16 bitcoin-16.png +convert ${ICON_SRC} -resize 32x32 bitcoin-32.png +convert ${ICON_SRC} -resize 48x48 bitcoin-48.png +convert bitcoin-16.png bitcoin-32.png bitcoin-48.png ${ICON_DST} + -- 1.7.1