fix install bash completion #63

Merged
xpamych merged 2 commits from Maks1mS/ALR:fix-install-bash-complete into master 2025-03-30 12:51:37 +00:00
3 changed files with 13 additions and 7 deletions
Showing only changes of commit 70aca61750 - Show all commits

@ -124,8 +124,14 @@ func InstallCmd() *cli.Command {
},
BashComplete: func(c *cli.Context) {
cfg := config.New()
err := cfg.Load()
if err != nil {
slog.Error(gotext.Get("Error loading config"), "err", err)
os.Exit(1)
}
db := database.New(cfg)
err := db.Init(c.Context)
err = db.Init(c.Context)
if err != nil {
slog.Error(gotext.Get("Error initialization database"), "err", err)
os.Exit(1)

@ -162,15 +162,15 @@ msgstr ""
msgid "Command install expected at least 1 argument, got %d"
msgstr ""
#: install.go:157
#: install.go:163
msgid "Remove an installed package"
msgstr ""
#: install.go:162
#: install.go:168
msgid "Command remove expected at least 1 argument, got %d"
msgstr ""
#: install.go:177
#: install.go:183
msgid "Error removing packages"
msgstr ""

@ -170,15 +170,15 @@ msgstr "Установить новый пакет"
msgid "Command install expected at least 1 argument, got %d"
msgstr "Для команды install ожидался хотя бы 1 аргумент, получено %d"
#: install.go:157
#: install.go:163
msgid "Remove an installed package"
msgstr "Удалить установленный пакет"
#: install.go:162
#: install.go:168
msgid "Command remove expected at least 1 argument, got %d"
msgstr "Для команды remove ожидался хотя бы 1 аргумент, получено %d"
#: install.go:177
#: install.go:183
msgid "Error removing packages"
msgstr "Ошибка при удалении пакетов"