mirror of
https://github.com/Llewellynvdm/starship.git
synced 2024-11-04 20:37:56 +00:00
23 lines
699 B
Rust
23 lines
699 B
Rust
|
use std::{io, process};
|
||
|
|
||
|
pub fn render_prompt() -> process::Command {
|
||
|
let mut command = process::Command::new("./target/debug/starship");
|
||
|
command.arg("prompt");
|
||
|
|
||
|
command
|
||
|
}
|
||
|
|
||
|
pub fn render_module(module_name: &str) -> process::Command {
|
||
|
let mut command = process::Command::new("./target/debug/starship");
|
||
|
command.arg("module").arg(module_name);
|
||
|
|
||
|
command
|
||
|
}
|
||
|
|
||
|
/// Create a temporary directory with full access permissions (rwxrwxrwt).
|
||
|
pub fn new_tempdir() -> io::Result<tempfile::TempDir> {
|
||
|
// Using `tempfile::TempDir` directly creates files on macOS within
|
||
|
// "/var/folders", which provides us with restricted permissions (rwxr-xr-x)
|
||
|
tempfile::tempdir_in("/tmp")
|
||
|
}
|