diff options
Diffstat (limited to 'install-win32/copyinstaller')
-rw-r--r-- | install-win32/copyinstaller | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/install-win32/copyinstaller b/install-win32/copyinstaller deleted file mode 100644 index feecd13..0000000 --- a/install-win32/copyinstaller +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh - -# copy the installer to the $INSTALLER_DEST directory. - -# load version.nsi definitions -. autodefs/defs.sh - -if [ -n "$INSTALLER_DEST" ] ; then - cd install-win32 - ls openvpn*.exe 2>/dev/null || exit 1 - exe=install-win32/`ls -t openvpn*.exe | head -n 1` - cd .. - echo cp $exe "$INSTALLER_DEST" - cp $exe "$INSTALLER_DEST" -fi |