You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello,
I had a problem with blank password.
First, you need to set double quotation marks so you don't get invalid password message.
This may not be huge, but accepting blank string would be preferred.
Secondly, On Windows I believe there is problem with quotation marks.
I have resolved this by passing another argument to spawn command:
{windowsVerbatimArguments: true}
In your case you would need to replace following:
107: child = spawn(args[0], args.slice(1));
with
107: child = spawn(args[0], args.slice(1),{windowsVerbatimArguments: true});
Thank you for your work.
The text was updated successfully, but these errors were encountered:
Hello,
I had a problem with blank password.
First, you need to set double quotation marks so you don't get invalid password message.
This may not be huge, but accepting blank string would be preferred.
Secondly, On Windows I believe there is problem with quotation marks.
I have resolved this by passing another argument to spawn command:
{windowsVerbatimArguments: true}
This was based on this discussion
nodejs/node#5060 (comment)
In your case you would need to replace following:
107: child = spawn(args[0], args.slice(1));
with
107: child = spawn(args[0], args.slice(1),{windowsVerbatimArguments: true});
Thank you for your work.
The text was updated successfully, but these errors were encountered: