diff options
| author | MarcoFalke <[email protected]> | 2015-09-26 17:57:51 +0200 |
|---|---|---|
| committer | MarcoFalke <[email protected]> | 2015-10-09 16:57:28 +0200 |
| commit | 8a320c7956f1cb051305a7664d7c6bb8d555e5e7 (patch) | |
| tree | c3c4189e9de0c91a7674793fdcd278c014f7adf4 /share | |
| parent | Merge pull request #6789 (diff) | |
| download | discoin-8a320c7956f1cb051305a7664d7c6bb8d555e5e7.tar.xz discoin-8a320c7956f1cb051305a7664d7c6bb8d555e5e7.zip | |
[trivial] Remove obsolete share/qt/make_windows_icon.sh
Diffstat (limited to 'share')
| -rwxr-xr-x | share/qt/make_windows_icon.sh | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/share/qt/make_windows_icon.sh b/share/qt/make_windows_icon.sh deleted file mode 100755 index bf607b1c6..000000000 --- a/share/qt/make_windows_icon.sh +++ /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} - |