summaryrefslogtreecommitdiffstats
path: root/install-win32/signinstaller
diff options
context:
space:
mode:
Diffstat (limited to 'install-win32/signinstaller')
-rw-r--r--install-win32/signinstaller16
1 files changed, 0 insertions, 16 deletions
diff --git a/install-win32/signinstaller b/install-win32/signinstaller
deleted file mode 100644
index a802360..0000000
--- a/install-win32/signinstaller
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/bin/sh
-
-# Sign the installer.
-
-c=`pwd`
-
-# load version.nsi definitions
-. autodefs/defs.sh
-
-if [ -d "$SIGNTOOL" ]; then
- cd install-win32
- ls *.exe 2>/dev/null || exit 1
- export TARGET_EXE=$(pwd)/$(ls -t *.exe | head -n 1)
- cd $c
- $SIGNTOOL/signexe
-fi