Skip to content

Commit

Permalink
Merge pull request #453 from s-urbaniak/delete
Browse files Browse the repository at this point in the history
Fix DeleteUnused flag
  • Loading branch information
mattfarina committed Jun 1, 2016
2 parents 5f5e941 + 4ebe050 commit 9cad1fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions glide.go
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,7 @@ Example:
installer.UseCacheGopath = c.Bool("cache-gopath")
installer.UpdateVendored = c.Bool("update-vendored")
installer.Home = c.GlobalString("home")
installer.DeleteUnused = c.Bool("deleteOptIn")
installer.DeleteUnused = c.Bool("delete")

action.Install(installer, c.Bool("strip-vcs"), c.Bool("strip-vendor"))
},
Expand Down Expand Up @@ -559,7 +559,7 @@ Example:
installer.UpdateVendored = c.Bool("update-vendored")
installer.ResolveAllFiles = c.Bool("all-dependencies")
installer.Home = c.GlobalString("home")
installer.DeleteUnused = c.Bool("deleteOptIn")
installer.DeleteUnused = c.Bool("delete")

action.Update(installer, c.Bool("no-recursive"), c.Bool("strip-vcs"), c.Bool("strip-vendor"))
},
Expand Down

0 comments on commit 9cad1fe

Please sign in to comment.