File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ func main() {
31
31
}
32
32
var configuration bb_runner.ApplicationConfiguration
33
33
if err := util .UnmarshalConfigurationFromFile (os .Args [1 ], & configuration ); err != nil {
34
- return util .StatusWrapf (err , "Failed to read configuration from %s " , os .Args [1 ])
34
+ return util .StatusWrapf (err , "Failed to read configuration from %#v " , os .Args [1 ])
35
35
}
36
36
lifecycleState , grpcClientFactory , err := global .ApplyConfiguration (configuration .Global )
37
37
if err != nil {
@@ -40,7 +40,7 @@ func main() {
40
40
41
41
buildDirectoryPath , scopeWalker := path .EmptyBuilder .Join (path .NewAbsoluteScopeWalker (path .VoidComponentWalker ))
42
42
if err := path .Resolve (path .NewLocalParser (configuration .BuildDirectoryPath ), scopeWalker ); err != nil {
43
- return util .StatusWrap (err , "Failed to resolve build directory" )
43
+ return util .StatusWrapf (err , "Failed to resolve build directory %#v" , configuration . BuildDirectoryPath )
44
44
}
45
45
buildDirectory := re_filesystem .NewLazyDirectory (
46
46
func () (filesystem.DirectoryCloser , error ) {
You can’t perform that action at this time.
0 commit comments