Skip to content

Commit dfc62c2

Browse files
committed
adding a print
1 parent f9dbccb commit dfc62c2

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/main/java/com/neuronrobotics/bowlerstudio/scripting/ScriptingEngine.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1827,6 +1827,7 @@ public static File cloneRepo(String remoteURI, String branch) {
18271827
}
18281828
}
18291829
// Assume it is a URL
1830+
18301831
File gistDir = getRepositoryCloneDirectory(remoteURI);
18311832
String localPath = gistDir.getAbsolutePath();
18321833
File gitRepoFile = new File(localPath + "/.git");
@@ -1835,6 +1836,7 @@ public static File cloneRepo(String remoteURI, String branch) {
18351836
if (!gitRepoFile.exists()) {
18361837
if (!hasNetwork())
18371838
return null;// No login info means there is no way to publish
1839+
Log.debug("Cloning "+remoteURI);
18381840
waitForRepo(remoteURI, "cloneRepo");
18391841
com.neuronrobotics.sdk.common.Log.debug("Cloning files from: " + remoteURI);
18401842
if (branch != null)

0 commit comments

Comments
 (0)