0
0
mirror of https://github.com/OpenVPN/openvpn.git synced 2024-09-20 12:02:28 +02:00
openvpn/install-win32/maketapinstall
2011-03-17 04:55:47 +00:00

16 lines
420 B
Bash

#!/bin/sh
# Get the x86 and x64 versions of the tapinstall tool
# get version.nsi definitions
. autodefs/defs.sh
if [ -d "$TAPBINSRC" ]; then
mkdir -p $GENOUT/tapinstall/i386 &>/dev/null
mkdir -p $GENOUT/tapinstall/amd64 &>/dev/null
cp $TAPBINSRC/i386/tapinstall.exe $GENOUT/tapinstall/i386
cp $TAPBINSRC/amd64/tapinstall.exe $GENOUT/tapinstall/amd64
else
echo Cannot find pre-built tapinstall
fi