You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
343 B
12 lines
343 B
use anyhow::Result;
|
|
use vergen::{vergen, Config, SemverKind};
|
|
|
|
fn main() -> Result<()> {
|
|
std::fs::create_dir_all("../maker-frontend/dist/maker")?;
|
|
std::fs::create_dir_all("../taker-frontend/dist/taker")?;
|
|
|
|
let mut config = Config::default();
|
|
*config.git_mut().semver_kind_mut() = SemverKind::Lightweight;
|
|
|
|
vergen(config)
|
|
}
|
|
|