mirror of
https://github.com/TECHNOFAB11/jsonnet-bundler.git
synced 2025-12-11 23:50:05 +01:00
rename "vendorDir" variable to "jsonnetPkgHomeDir"
this better matches the terminology used for the config flag
This commit is contained in:
parent
f2a24b787b
commit
9d24e141db
1 changed files with 2 additions and 2 deletions
|
|
@ -72,8 +72,8 @@ func installCommand(dir, jsonnetHome string, uris []string, single bool) int {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
vendorDir := filepath.Join(dir, jsonnetHome)
|
jsonnetPkgHomeDir := filepath.Join(dir, jsonnetHome)
|
||||||
locked, err := pkg.Ensure(jsonnetFile, vendorDir, lockFile.Dependencies)
|
locked, err := pkg.Ensure(jsonnetFile, jsonnetPkgHomeDir, lockFile.Dependencies)
|
||||||
kingpin.FatalIfError(err, "failed to install packages")
|
kingpin.FatalIfError(err, "failed to install packages")
|
||||||
|
|
||||||
pkg.CleanLegacyName(jsonnetFile.Dependencies)
|
pkg.CleanLegacyName(jsonnetFile.Dependencies)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue