dsherret / dax

Cross-platform shell tools for Deno and Node.js inspired by zx.
MIT License
965 stars 33 forks source link

fix: better error message when providing a command builder to an expr #240

Closed dsherret closed 5 months ago

dsherret commented 5 months ago

This is not yet supported. It needs to be awaited:

const cmd = $`echo 1`;  // should be: const cmd = await $`echo 1`.text();
await $`echo ${cmd}`;