diff options
| author | Shulhan <ms@kilabit.info> | 2018-07-03 01:17:24 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2018-07-03 01:17:24 +0700 |
| commit | 53d50f6c36df97f9c02e0bd313204b7dda6a81be (patch) | |
| tree | 23333c8fbf2f1838f9130221e7feabf9605a64f0 | |
| parent | bc9faaf647a61bb07b37b4221f761e0cef40cb0d (diff) | |
| download | beku-53d50f6c36df97f9c02e0bd313204b7dda6a81be.tar.xz | |
[chore] env: print the status of reinstall all packages
| -rw-r--r-- | env.go | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -211,7 +211,7 @@ func (env *Env) Freeze() (err error) { } if len(env.pkgsUnused) == 0 { - fmt.Println("[ENV] Freeze >>> No unused packages found.") + fmt.Println("\n[ENV] Freeze >>> No unused packages found.") goto out } @@ -1391,6 +1391,8 @@ func (env *Env) build(pkg *Package) (err error) { func (env *Env) reinstallAll() (err error) { for _, pkg := range env.pkgs { + fmt.Printf("\n[ENV] reinstallAll >>> %s\n", pkg.ImportPath) + err = env.build(pkg) if err != nil { return |
