@ubercode/dcmtk 0.8.1 → 0.8.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/servers.js CHANGED
@@ -2282,7 +2282,7 @@ async function tryDirectPath(inputPath, timeoutMs, signal, verbosity) {
2282
2282
  if (!jsonBinary.ok) {
2283
2283
  return err(jsonBinary.error);
2284
2284
  }
2285
- const directArgs = [...buildVerbosityArgs(verbosity), inputPath];
2285
+ const directArgs = [...buildVerbosityArgs(verbosity), "+b", inputPath];
2286
2286
  const result = await execCommand(jsonBinary.value, directArgs, { timeoutMs, signal });
2287
2287
  if (!result.ok) {
2288
2288
  return err(result.error);