mirror of
https://github.com/haugene/docker-transmission-openvpn.git
synced 2025-08-07 06:47:12 +02:00
fixing invalid concatenation (#2743)
* fixing invalid concatenation --------- Co-authored-by: Patrick Kishino <patrick.a.kishino@gmail.com>
This commit is contained in:
parent
40a598a451
commit
ad0d9972d1
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user