use std::path::PathBuf;
use crate::commands::lib::{cargo_build, BuildType};
use anyhow::{Context, Result};
pub fn cmd(release: bool, target_dir: &PathBuf, plugin_path: &PathBuf) -> Result<()> {
let build_type = if release {
BuildType::Release
} else {
BuildType::Debug
};
cargo_build(build_type, target_dir, plugin_path).context("building of plugin")
}