Skip to content

Commit 7f02d6e

Browse files
committed
Fix undefined error
1 parent 241d7b8 commit 7f02d6e

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

cls/SourceControl/Git/Utils.cls

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3072,6 +3072,7 @@ ClassMethod BaselineExport(pCommitMessage = "", pPushToRemote = "") As %Status
30723072
/// Returns the url for the "origin" remote repository
30733073
ClassMethod GetConfiguredRemote(Output remoteExists As %Boolean = 0, Output sc As %Status = {$$$OK}) As %String
30743074
{
3075+
set url = ""
30753076
set exitCode = ..RunGitCommand("remote",.err,.out,"get-url","origin")
30763077
if (exitCode = 0) {
30773078
set remoteExists = 1

0 commit comments

Comments
 (0)