Compare commits

...

2 Commits
0.8.8 ... 0.8.9

Author SHA1 Message Date
Ettore Di Giacinto
4e9313ed55 Tag 0.8.9 2020-10-22 18:36:37 +02:00
Ettore Di Giacinto
c9952b12a8 Get file list from parsed yaml 2020-10-22 17:33:37 +02:00
2 changed files with 2 additions and 5 deletions

View File

@@ -59,10 +59,7 @@ func NewDatabaseCreateCommand() *cobra.Command {
systemDB = pkg.NewInMemoryDatabase(true)
}
files, err := art.FileList()
if err != nil {
Fatal("Failed getting file list for ", a, ": ", err.Error())
}
files := art.GetFiles()
if _, err := systemDB.CreatePackage(art.GetCompileSpec().GetPackage()); err != nil {
Fatal("Failed to create ", a, ": ", err.Error())

View File

@@ -38,7 +38,7 @@ var Verbose bool
var LockedCommands = []string{"install", "uninstall", "upgrade"}
const (
LuetCLIVersion = "0.8.8"
LuetCLIVersion = "0.8.9"
LuetEnvPrefix = "LUET"
)