Diggsey / ijson

More efficient alternative to `serde_json::Value` which saves memory by interning primitive values and using tagged pointers.
Apache License 2.0
127 stars 14 forks source link

Error running `generate` #8

Open gkorland opened 2 years ago

gkorland commented 2 years ago

Getting the following error:

$ cargo run --example generate --release
Error: Os { code: 2, kind: NotFound, message: "No such file or directory" }
gkorland commented 2 years ago

Found the issue in https://github.com/Diggsey/ijson/blob/a5dbe78d7f22856f7deaeeeb2bf2df436409243c/examples/generate.rs#L10

        let mut cmd = Command::new("dummyjson.cmd");

Should be in Linux

        let mut cmd = Command::new("dummyjson.");