Remove double echos

This commit is contained in:
DL6ER 2017-02-06 12:06:38 +01:00
parent 314f7e7889
commit 8fb6ba19a1
No known key found for this signature in database
GPG Key ID: BB8EC0BC77973A30
1 changed files with 0 additions and 2 deletions

View File

@ -171,11 +171,9 @@ getGitFiles() {
echo ":::"
echo "::: Checking for existing repository..."
if is_repo "${directory}"; then
echo -n "::: Updating repository in ${directory}..."
update_repo "${directory}" || { echo "*** Error: Could not update local repository. Contact support."; exit 1; }
echo " done!"
else
echo -n "::: Cloning ${remoteRepo} into ${directory}..."
make_repo "${directory}" "${remoteRepo}" || { echo "Unable to clone repository, please contact support"; exit 1; }
echo " done!"
fi