change mkdir to mkdir -p for directory not exist

change mkdir to mkdir -p for directory /etc/openvpn/easy-rsa not exist
This commit is contained in:
cn3lfs 2020-06-30 15:14:19 +08:00 committed by GitHub
parent eca5be8aac
commit a35cd2eca4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -694,7 +694,7 @@ function installOpenVPN() {
if [[ ! -d /etc/openvpn/easy-rsa/ ]]; then
local version="3.0.7"
wget -O ~/easy-rsa.tgz https://github.com/OpenVPN/easy-rsa/releases/download/v${version}/EasyRSA-${version}.tgz
mkdir /etc/openvpn/easy-rsa
mkdir -p /etc/openvpn/easy-rsa
tar xzf ~/easy-rsa.tgz --strip-components=1 --directory /etc/openvpn/easy-rsa
rm -f ~/easy-rsa.tgz