aboutsummaryrefslogtreecommitdiff
path: root/share/qt/make_windows_icon.py
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2012-04-14 18:32:30 +0200
committerWladimir J. van der Laan <laanwj@gmail.com>2012-04-14 18:33:19 +0200
commit6f6f524f1a916f9aefe5e1ab102efebdab007530 (patch)
tree7ceabff770ca49f88b11cda5ce3d16eca00d5b81 /share/qt/make_windows_icon.py
parent22014c31e5955f29ccf84cbdce3d84a025a6f771 (diff)
downloadbitcoin-6f6f524f1a916f9aefe5e1ab102efebdab007530.tar.xz
Rename make_windows_icon.py to .sh as it is a shell script (fixes #1099)
Diffstat (limited to 'share/qt/make_windows_icon.py')
-rwxr-xr-xshare/qt/make_windows_icon.py9
1 files changed, 0 insertions, 9 deletions
diff --git a/share/qt/make_windows_icon.py b/share/qt/make_windows_icon.py
deleted file mode 100755
index bf607b1c62..0000000000
--- 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}
-