diff --git a/src/remote-handlers/nfs.js b/src/remote-handlers/nfs.js index 7b5a6d9d5..8247e1c6d 100644 --- a/src/remote-handlers/nfs.js +++ b/src/remote-handlers/nfs.js @@ -79,6 +79,6 @@ export default class NfsHandler extends LocalHandler { } async _umount (remote) { - await execa('umount', [remote.path]) + await execa('umount', [this._getRealPath()]) } }