krankerl 0.12.3

A CLI helper to manage Nextcloud apps
Documentation
1
2
3
4
5
6
7
8
9
use std::path::PathBuf;

use failure::Error;

use crate::packaging::package_app as package;

pub fn package_app(app_path: &PathBuf, shipped: bool) -> Result<(), Error> {
    package(app_path, shipped)
}