Skip to content

Commit

Permalink
removing unnecessary log and a repeated word in a log statement
Browse files Browse the repository at this point in the history
  • Loading branch information
harikrishnan83 committed May 12, 2024
1 parent 1bfc2af commit 756497b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,6 @@ private fun jgitClone(gitRepositoryURI: String, cloneDirectory: File) {
}

fun evaluateEnvVariablesInGitRepoURI(gitRepositoryURI: String, environmentVariables: Map<String, String>): String {
logger.log("Evaluating any environment variables in $gitRepositoryURI")
var evaluatedGitRepoUrl = gitRepositoryURI
val envVariableRegex = Regex("\\$\\{([^}]+)}")
val envVariableMatches = envVariableRegex.findAll(gitRepositoryURI)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ data class GitRepo(
addSpecmaticFolderToGitIgnoreFile(gitIgnoreFile)
}
else{
logger.log("Creating a gitignore file file as it is missing for the current project.")
logger.log("Creating a gitignore file as it is missing for the current project.")
addSpecmaticFolderToGitIgnoreFile(gitIgnoreFile, false)
}
}
Expand Down

0 comments on commit 756497b

Please sign in to comment.