From 70aca617507d57bec549227f93f1080f65356f3b Mon Sep 17 00:00:00 2001 From: Maxim Slipenko Date: Sun, 30 Mar 2025 11:29:24 +0300 Subject: [PATCH] fix install bash complete --- install.go | 8 +++++++- internal/translations/default.pot | 6 +++--- internal/translations/po/ru/default.po | 6 +++--- 3 files changed, 13 insertions(+), 7 deletions(-) diff --git a/install.go b/install.go index 14ab04f..9c7c7ac 100644 --- a/install.go +++ b/install.go @@ -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) diff --git a/internal/translations/default.pot b/internal/translations/default.pot index 1397b52..e199ee8 100644 --- a/internal/translations/default.pot +++ b/internal/translations/default.pot @@ -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 "" diff --git a/internal/translations/po/ru/default.po b/internal/translations/po/ru/default.po index 72d59bd..bb2f1f1 100644 --- a/internal/translations/po/ru/default.po +++ b/internal/translations/po/ru/default.po @@ -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 "Ошибка при удалении пакетов"