Skip to content

Commit

Permalink
The logic for checking of existence of git files wasn't always workin…
Browse files Browse the repository at this point in the history
…g as expected due to searching the current directory rather than using the export folder.
  • Loading branch information
bclothier committed Oct 19, 2023
1 parent 6cdac0c commit 734d835
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Version Control.accda.src/modules/modVCSUtility.bas
Original file line number Diff line number Diff line change
Expand Up @@ -794,7 +794,7 @@ Public Sub CheckGitFiles()
Dim strFile As String
Dim blnAdded As Boolean

strPath = CurrentProject.Path & PathSep
strPath = Options.GetExportFolder
If FSO.FolderExists(strPath & ".git") Then

' gitignore file
Expand Down

0 comments on commit 734d835

Please sign in to comment.