Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
When looking for the workspace root, the match: ```rust if let JsonValue::String(s) = &metadata()?["workspace_root"] ``` was not succeding as the value was actually `JsonValue::Short(...)`, an alternative string representation. Switch to calling `JsonValue`'s `as_str()` method and matching on the result, which should work in both cases.
- Loading branch information