Skip to content

Commit

Permalink
chore: chore some log messages of extract subcommand
Browse files Browse the repository at this point in the history
  • Loading branch information
erpz22 committed Aug 7, 2024
1 parent beb2562 commit f92e7f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/cli/build/extract.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,14 @@ func Extract(_ *cli.Context) error {

rootBuildDir = filepath.Join(args.ConfigDir, defaultBuildDir)
if err := os.MkdirAll(rootBuildDir, os.ModePerm); err != nil {
log.Auditf("The root build directory could not be set up under the configuration directory '%s'.", args.ConfigDir)
log.Auditf("The root extract directory could not be set up under the configuration directory '%s'.", args.ConfigDir)
return err
}
}

buildDir, err := build.SetupBuildDirectory(rootBuildDir)
if err != nil {
log.Audit("The build directory could not be set up.")
log.Audit("The extract directory could not be set up.")
return err
}

Expand Down

0 comments on commit f92e7f2

Please sign in to comment.