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
if (!this.cwd.isExistingDirectory()) { throw new Error(The provided working directory ${cwd} does not exist or is not a directory.); }
then, the directoryOnly is meaningless; It should be:
if (!this.cwd.isExistingDirectory() && directoryOnly) { throw new Error(The provided working directory ${cwd} does not exist or is not a directory.); }
The text was updated successfully, but these errors were encountered:
In PathAutocomplete.js line 21
if (!this.cwd.isExistingDirectory()) { throw new Error(
The provided working directory ${cwd} does not exist or is not a directory.); }
then, the directoryOnly is meaningless; It should be:
if (!this.cwd.isExistingDirectory() && directoryOnly) { throw new Error(
The provided working directory ${cwd} does not exist or is not a directory.); }
The text was updated successfully, but these errors were encountered: