diff --git a/buildtool.sh b/buildtool.sh index b414075..706a008 100755 --- a/buildtool.sh +++ b/buildtool.sh @@ -348,8 +348,12 @@ case "${BUILDTOOL_CPUPOWER}" in esac # Clone repository -infoh "Cloning repository" -git clone "${BUILDTOOL_REPOSITORY}" "${BUILDTOOL_CLONEDIR}" +if [ "${BUILDTOOL_CLONEDIR_CONFLICT}" == "r" ] || [ "${BUILDTOOL_CLONEDIR_CONFLICT}" == "R" ]; then + warnh "Skipping cloning process" +else + infoh "Cloning repository" + git clone "${BUILDTOOL_REPOSITORY}" "${BUILDTOOL_CLONEDIR}" +fi cd "${BUILDTOOL_CLONEDIR}" # Print debug information