We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c2ae1a commit 3205d3aCopy full SHA for 3205d3a
components/content-service/pkg/initializer/git.go
@@ -134,11 +134,11 @@ func (ws *GitInitializer) Run(ctx context.Context, mappings []archive.IDMapping)
134
135
cmd = exec.Command("ls", "-al", ws.Location)
136
res, _ = cmd.CombinedOutput()
137
- log.Infof("ls -al %s: %v", ws.Location, res)
+ log.Infof("ls -al %s: %v", ws.Location, string(res))
138
139
cmd = exec.Command("ls", "-al", ws.Location+".git/")
140
141
- log.Infof("ls -al %s: %v", ws.Location+".git/", res)
+ log.Infof("ls -al %s: %v", ws.Location+".git/", string(res))
142
}
143
if err := ws.realizeCloneTarget(ctx); err != nil {
144
return src, xerrors.Errorf("git initializer clone: %w", err)
0 commit comments