Improved interpretor path support #304
Open
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Although I am aware of your policy of not accepting pull requests, I am leaving this here as a base for a potential fix for issue #303 whenever you get time to deal with this. Modify it as you wish.
This PR adds
existsSyncExandcommandExistsSyncfunctions to support accepting a command, file, or symlink as runtime paths. This fixes the issue whereexistsSyncreturns "false" in the case of a symlink pointing to the WindowsApps restricted folder.commandExistsSyncrequires the packagecommand-exists, this has been added to package.jsonexistsSyncExuseslstatSyncto check whether a file or symlink exists by checking for the ENOENT error.lstatSyncis used instead ofstatSyncbecause the latter fails with a "permission denied" error in cases of a symlink pointing to a restricted permission file.For example, if AHK Microsoft Store edition is installed,
commandExistsSyncpermitsAutoHotkeycommand to be used instead of a full path, andexistsSyncExpermits the symlinkC:/Users/CURRENTUSER/AppData/Local/Microsoft/WindowsApps/AutoHotkey.exewhich previously failed.