Add command to fix symlink
This commit is contained in:
parent
dcf4601159
commit
e5e3f94956
5
index.js
5
index.js
@ -39,7 +39,10 @@ class VirtualBox {
|
|||||||
if (opts.writable === false || opts.readonly) args.push('--readonly')
|
if (opts.writable === false || opts.readonly) args.push('--readonly')
|
||||||
if (opts.transient) args.push('--transient')
|
if (opts.transient) args.push('--transient')
|
||||||
|
|
||||||
this.command(args, done)
|
this.command(args, function () {
|
||||||
|
const args2 = ['setextradata', 'default', 'VBoxInternal2/SharedFoldersEnableSymlinksCreate/' + name, '1']
|
||||||
|
this.command(args2, done)
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
removeShare() {
|
removeShare() {
|
||||||
|
Loading…
Reference in New Issue
Block a user