mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-10 04:07:59 +00:00
9be09e8daa
Signed-off-by: Alexandru Vasile <alexandru.vasile@parity.io>
18 lines
394 B
Rust
18 lines
394 B
Rust
use std::{borrow::Cow, process::Command};
|
|
|
|
fn main() {
|
|
// eprintln!("Running command");
|
|
// let cmd = Command::new("wasm-pack")
|
|
// .args([
|
|
// "build",
|
|
// "--release",
|
|
// "--out-name",
|
|
// "smoldottt",
|
|
// "--target-dir",
|
|
// "alt",
|
|
// ])
|
|
// .output();
|
|
|
|
// eprintln!("output is {cmd:?}");
|
|
}
|