When running a command such as `npx nwbuild ./src --outDir build --app.icon=logo.png` The resulting `build/app.desktop` has the path ``` ... Icon=$PWD/logo.png ``` instead of `$PWD/build/package.nw/logo.png` as the [code](https://github.com/nwutils/nw-builder/blob/6efefe7a9eb8aea5a2534330e07814590a4b8bce/src/bld.js#L264) suggests it should. This is because of this [if statement](https://github.com/nwutils/nw-builder/blob/6efefe7a9eb8aea5a2534330e07814590a4b8bce/src/util.js#L243) which resolve the path before the respective config gets to.