Merge pull request #575 from OpenVPN/release/3.0

update python call, remove test pki on build
This commit is contained in:
Eric Crist 2022-05-18 20:47:27 -05:00 committed by GitHub
commit 92d8491160
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -63,6 +63,12 @@ dist_clean() {
"$DISTCLEAN"
rm -rf "$DIST_ROOT" || die "dist_clean failed to rm"
fi
# remove any test pki paths in easyrsa path
if [ -d "easyrsa3/pki" ]; then
echo "Found test pki, removing..."
rm -rf easyrsa3/pki
fi
mkdir -p "$DIST_ROOT" || die "dist_clean failed to mkdir"
}