@@ -419,7 +419,8 @@ func downloadTemplate(
419419 }
420420
421421 l .Debugf ("Downloading template from %s into %s" , baseURL .String (), templateDir )
422- // Downloading baseURL to support boilerplate dependencies and partials. Go-getter discards all but specified folder if one is provided.
422+ // Downloading baseURL to support boilerplate dependencies and partials.
423+ // Go-getter discards all but specified folder if one is provided.
423424 if _ , err := getter .GetAny (ctx , templateDir , baseURL .String ()); err != nil {
424425 return "" , errors .New (err )
425426 }
@@ -558,7 +559,8 @@ func parseModuleURL(
558559}
559560
560561// rewriteModuleURL rewrites module url to git ssh if required
561- // github.com/gruntwork-io/terragrunt.git//test/fixtures/inputs => git::https://github.com/gruntwork-io/terragrunt.git//test/fixtures/inputs
562+ // github.com/gruntwork-io/terragrunt.git//test/fixtures/inputs =>
563+ // git::https://github.com/gruntwork-io/terragrunt.git//test/fixtures/inputs
562564func rewriteModuleURL (
563565 l log.Logger ,
564566 opts * options.TerragruntOptions ,
@@ -585,7 +587,8 @@ func rewriteModuleURL(
585587 return parsedModuleURL , nil
586588 }
587589 // try to rewrite module url if is https and is requested to be git
588- // git::https://github.com/gruntwork-io/terragrunt.git//test/fixtures/inputs => git::ssh://git@github.com/gruntwork-io/terragrunt.git//test/fixtures/inputs
590+ // git::https://github.com/gruntwork-io/terragrunt.git//test/fixtures/inputs =>
591+ // git::ssh://git@github.com/gruntwork-io/terragrunt.git//test/fixtures/inputs
589592 if parsedValue .scheme == "https" && sourceURLType == sourceURLTypeGit {
590593 gitUser := sourceGitSSHUser
591594 if value , found := vars [sourceGitSSHUserVar ]; found {
@@ -606,7 +609,8 @@ func rewriteModuleURL(
606609}
607610
608611// rewriteTemplateURL rewrites template url with reference to tag
609- // github.com/denis256/terragrunt-tests.git//scaffold/base-template => github.com/denis256/terragrunt-tests.git//scaffold/base-template?ref=v0.53.8
612+ // github.com/denis256/terragrunt-tests.git//scaffold/base-template =>
613+ // github.com/denis256/terragrunt-tests.git//scaffold/base-template?ref=v0.53.8
610614func rewriteTemplateURL (
611615 ctx context.Context ,
612616 l log.Logger ,
@@ -663,7 +667,8 @@ func addRefToModuleURL(
663667 ref := params .Get (refParam )
664668 if ref == "" {
665669 // if ref is not passed, find last release tag
666- // git::https://github.com/gruntwork-io/terragrunt.git//test/fixtures/inputs => git::https://github.com/gruntwork-io/terragrunt.git//test/fixtures/inputs?ref=v0.53.8
670+ // git::https://github.com/gruntwork-io/terragrunt.git//test/fixtures/inputs =>
671+ // git::https://github.com/gruntwork-io/terragrunt.git//test/fixtures/inputs?ref=v0.53.8
667672 rootSourceURL , _ , err := tf .SplitSourceURL (l , moduleURL )
668673 if err != nil {
669674 return nil , errors .New (err )
0 commit comments