File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
components/content-service/pkg/initializer Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -134,11 +134,11 @@ func (ws *GitInitializer) Run(ctx context.Context, mappings []archive.IDMapping)
134
134
135
135
cmd = exec .Command ("ls" , "-al" , ws .Location )
136
136
res , _ = cmd .CombinedOutput ()
137
- log .Infof ("ls -al %s: %v" , ws .Location , res )
137
+ log .Infof ("ls -al %s: %v" , ws .Location , string ( res ) )
138
138
139
- cmd = exec .Command ("ls" , "-al" , ws .Location + ".git/" )
139
+ cmd = exec .Command ("ls" , "-al" , ws .Location + "/ .git/" )
140
140
res , _ = cmd .CombinedOutput ()
141
- log .Infof ("ls -al %s: %v" , ws .Location + ".git/" , res )
141
+ log .Infof ("ls -al %s: %v" , ws .Location + "/ .git/" , string ( res ) )
142
142
}
143
143
if err := ws .realizeCloneTarget (ctx ); err != nil {
144
144
return src , xerrors .Errorf ("git initializer clone: %w" , err )
You can’t perform that action at this time.
0 commit comments