From ad0d9972d1fd14b33e3949bd0878f9c0ba02477c Mon Sep 17 00:00:00 2001 From: James Storm Date: Tue, 14 Nov 2023 02:19:59 -0500 Subject: [PATCH] fixing invalid concatenation (#2743) * fixing invalid concatenation --------- Co-authored-by: Patrick Kishino --- openvpn/fetch-external-configs.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openvpn/fetch-external-configs.sh b/openvpn/fetch-external-configs.sh index 82192f6ff..486d597b8 100755 --- a/openvpn/fetch-external-configs.sh +++ b/openvpn/fetch-external-configs.sh @@ -64,7 +64,7 @@ elif [[ "${VPN_CONFIG_SOURCE_TYPE}" == "github_clone" ]]; then git -C "${config_repo}" checkout "${GITHUB_CONFIG_SOURCE_REVISION}" else echo "Cloning ${GITHUB_CONFIG_REPO_URL} into ${config_repo}" - config_repo_old="${config_repo}" + "_old" + config_repo_old="${config_repo}_old" mv "${config_repo}" "${config_repo_old}" git clone -b "${GITHUB_CONFIG_SOURCE_REVISION}" "${GITHUB_CONFIG_REPO_URL}" "${config_repo}" fi