You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 13, 2023. It is now read-only.
After I finished the thumbnail tutorial, I tried to test it and got this error
Error: No files match pattern `rust_memes/*`
After seeing that, I progressively commented out more code to get a minimal reproduction, and I was able to find that this block of code doesn't match anything
use quicli::prelude::*;fnmain() -> CliResult{let files = glob("src/*")?;println!("{:?}", files);Ok(())}
~/dev/rust/thumbify master
❯ cargo run --
Compiling thumbify v0.1.0 (/home/chris.pickard/dev/rust/thumbify)
Finished dev [unoptimized + debuginfo] target(s) in 1.11s
Running `target/debug/thumbify`
Error: No files match pattern `src/*`
Even though I clearly have matching files in my src/ directory
~/dev/rust/thumbify master
❯ ls src
main.rs
I'm sorry, I feel like I'm quite a thorn in your side at the moment