Compare commits

..

No commits in common. "b888ee2da656564393b227b48b454963ade67c3b" and "172974f576db38a71707d7383c7e0ca28cc7923f" have entirely different histories.

3 changed files with 3 additions and 3 deletions

2
Cargo.lock generated
View file

@ -4,4 +4,4 @@ version = 4
[[package]]
name = "better-commands"
version = "0.1.3"
version = "0.1.2"

View file

@ -1,7 +1,7 @@
[package]
name = "better-commands"
description = "A better way of running commands - get stdout and stderr together, in order with timestamps, while easily running code as it runs line-by-line"
version = "0.1.3"
version = "0.1.2"
edition = "2021"
license = "GPL-3.0-only"
keywords = ["command", "cmd"]

View file

@ -5,7 +5,7 @@ use std::{
fs::remove_file,
hash::{BuildHasher, Hasher, RandomState},
};
use std::{fs::File, thread::sleep};
use std::{fs::File, os::unix::fs::FileExt, thread::sleep};
/// Tests what stdout prints
#[test]