pathToDCliBin property

String pathToDCliBin

When you run dcli compile -i <script> the compiled exe is moved to this path.

The dcliBinPath is added to the OS's path allowing the installed scripts to be run from anywhere. This will normally be ~/.dcli/bin

Implementation

String get pathToDCliBin =>
    _dcliBinPath ??= truepath(p.join(HOME, dcliDir, 'bin'));