diff options
| author | Shulhan <ms@kilabit.info> | 2018-09-14 22:06:38 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2018-09-14 22:06:38 +0700 |
| commit | f538240dc38b7eb477ba15d99b46f8d1a40c0bca (patch) | |
| tree | 87402f9bb1f0bac55b7bda1fbfc09789b0ba4897 | |
| parent | 8f2a11a80ec2f1f629a0c7b530c495e547bb0af4 (diff) | |
| download | beku-f538240dc38b7eb477ba15d99b46f8d1a40c0bca.tar.xz | |
env: explain why we ignore error on post sync
| -rw-r--r-- | env.go | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -1323,7 +1323,9 @@ func (env *Env) SyncAll() (err error) { for _, pkg := range env.pkgs { if pkg.state&packageStateDirty > 0 { - env.postSync(pkg) + _ = env.postSync(pkg) + // Ignore error. Go install may failed due to missing + // dependencies. } } |
