axiom
axiom copied to clipboard
mount command should use its own path to find sub-commands
See https://github.com/chromium/axiom/blob/master/lib/wash/exe/mount.js#L88
var fsMountCmd = new Path('jsfs:/exe/mount.' + fsType);
The code currently a hard-coded path. It should use cx.path
as the basis for creating the name of the sub-mount commands.
Makes sense. I'll fix this.