clyde 0.6.0

A cross-platform package manager for prebuilt applications
1
2
3
4
5
6
7
8
9
10
11
12
13
// SPDX-FileCopyrightText: 2022 Aurélien Gâteau <mail@agateau.com>
//
// SPDX-License-Identifier: GPL-3.0-or-later

use anyhow::Result;

use crate::app::App;
use crate::ui::Ui;

pub fn update_cmd(app: &App, ui: &Ui) -> Result<()> {
    ui.info("Updating Clyde store");
    app.store.update()
}