fix(NfsHandler#_unmount): use _getRealPath() (#380)

Fixes vatesfr/xo-web#1396.
This commit is contained in:
Julien Fontanet 2016-08-15 14:22:19 +02:00 committed by GitHub
parent ce05b7a041
commit 1baf04f786

View File

@ -79,6 +79,6 @@ export default class NfsHandler extends LocalHandler {
}
async _umount (remote) {
await execa('umount', [remote.path])
await execa('umount', [this._getRealPath()])
}
}