1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-28 11:37:44 +00:00

Merge pull request #1281 from rivy/alt/win-cli-globbing

Add command line globbing to all utilities (for windows targets)
This commit is contained in:
Alex Lyon 2019-02-06 23:21:53 -08:00 committed by GitHub
commit 5a17daa963
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
21 changed files with 157 additions and 97 deletions

View file

@ -1,4 +1,5 @@
use common::util::*;
#[cfg(not(windows))]
use std::fs::set_permissions;
static TEST_EXISTING_FILE: &str = "existing_file.txt";

View file

@ -1,6 +1,7 @@
#[macro_use]
mod common;
#[cfg(unix)]
#[macro_use]
extern crate lazy_static;