mirror of
https://github.com/TECHNOFAB11/jsonnet-bundler.git
synced 2026-02-02 09:25:08 +01:00
feat: minor improvements
- allow to install pkg that is already locked - clean unknown files from vendor - correctly handle checksums and locked versions (was accidentally ignoring - these before)
This commit is contained in:
parent
cc1d7ea3b8
commit
0588b89c07
3 changed files with 95 additions and 18 deletions
|
|
@ -21,6 +21,7 @@ import (
|
|||
"path/filepath"
|
||||
"regexp"
|
||||
|
||||
"github.com/fatih/color"
|
||||
"github.com/pkg/errors"
|
||||
kingpin "gopkg.in/alecthomas/kingpin.v2"
|
||||
|
||||
|
|
@ -54,6 +55,8 @@ func Main() int {
|
|||
JsonnetHome string
|
||||
}{}
|
||||
|
||||
color.Output = color.Error
|
||||
|
||||
a := kingpin.New(filepath.Base(os.Args[0]), "A jsonnet package manager")
|
||||
a.HelpFlag.Short('h')
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue