* Fork glob. Normalise license holder

* Fix more licenses

* unwraps

* bad doc test
This commit is contained in:
JT
2022-03-13 11:30:27 -07:00
committed by GitHub
parent 30bb090cd4
commit ff3dffd813
48 changed files with 1582 additions and 53 deletions

View File

@ -1,5 +1,5 @@
[package]
authors = ["The Nu Project Contributors"]
authors = ["The Nushell Project Developers"]
description = "A plugin to open files/URLs directly from Nushell"
edition = "2018"
license = "MIT"

View File

@ -43,7 +43,7 @@ impl Start {
fn glob_to_values(&self, value: &Value) -> Result<Vec<Tagged<String>>, ShellError> {
let mut result = vec![];
match glob::glob(&value.as_string()?) {
match nu_glob::glob(&value.as_string()?) {
Ok(paths) => {
for path_result in paths {
match path_result {