runandlog 0.3.1

CLI / TUI that runs the shell commands in a Markdown file and writes the results back
1
2
3
4
5
6
7
8
9
10
//! Build script.
//!
//! Only the GUI needs one: `tauri-build` bakes the app manifest and the assets
//! into the binary. Without the `gui` feature this is a no-op, so a CLI-only
//! build does not need webkit2gtk / gtk3 to be installed.

fn main() {
    #[cfg(feature = "gui")]
    tauri_build::build();
}