This commit is contained in:
nora 2024-08-26 23:43:24 +02:00
parent 13c49524ba
commit bb55a1c334
3 changed files with 3 additions and 12 deletions

3
SECURITY.md Normal file
View file

@ -0,0 +1,3 @@
# Security Policy
This is not production software. Therefore, security issues are treated as normal bugs and can be reported via teh issue tracker.

BIN
testing

Binary file not shown.

View file

@ -1,12 +0,0 @@
use std::process::{Command, Stdio};
fn main() {
let mut cmd = Command::new("fish");
cmd.stderr(Stdio::piped());
cmd.stdout(Stdio::piped());
cmd.stdin(Stdio::piped());
let mut child = cmd.spawn().unwrap();
child.wait().unwrap();
}