fix(unitproc:initGitRepo):Improve usability
[BK-2020-03.git] / unitproc / bktemp-initGitRepo
index 905e9291bebe59548d0d2d018f6aa499c17f5033..4575dafcc4f5090368d3828541dab7d0d72d5b8e 100644 (file)
@@ -31,7 +31,7 @@ initGitRepo() {
     #        arg2: repoDir
     #        arg3: remoteName
     #        arg4: branchName
-    # Version: 0.0.5
+    # Version: 0.0.6
     # Depends: checkURL() 0.0.2, yell(), Bash 5.0.3
     # Ref/Attrib: [1]: Test for space-less alphanuemric string. https://unix.stackexchange.com/a/416120
     #             [2]: Test for argument count. https://stackoverflow.com/q/18568706
@@ -68,7 +68,6 @@ initGitRepo() {
     else
        yell "STATUS:Already a git repository:$repoDir";
        git status; git remote -v;
-       yell "STATUS:Pausing 4 seconds..."; sleep 4;
     fi;
     yell "STATUS:Adding $repoURL as remote $remoteName";
     git remote add "$remoteName" "$repoURL";
@@ -77,6 +76,7 @@ initGitRepo() {
     unset repoURL repoDir remoteName branchName;
     popd || exit 1;
     #==END create and populate git repository==
+    yell "================================";
 } # Init Git Repository
 #===END Declare local script functions===
 #==END Define script parameters==