chore: fix defer func in for-loop (#825)

* chore: call defer func for each iteration

Signed-off-by: TakahiroTsuruda <isrgnoe@gmail.com>

* chore: error check
This commit is contained in:
Takahiro Tsuruda
2021-02-23 23:22:15 +09:00
committed by GitHub
parent baf05eca3b
commit 4d6de1e2a5
2 changed files with 26 additions and 19 deletions

View File

@@ -52,7 +52,10 @@ var runCmd = &cobra.Command{
// Merge version-specific config if any.
path := filepath.Join(cfgDir, bv)
mergeConfig(path)
err = mergeConfig(path)
if err != nil {
fmt.Printf("Error in mergeConfig: %v\n", err)
}
err = run(targets, bv)
if err != nil {