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
{{ message }}
This repository has been archived by the owner on Sep 30, 2024. It is now read-only.
In certain environments, this will be reproduced by running the installer as usual and launching Pico - Developer PowerShell.
Sorry for the Japanese UI, but it says "The expression after '&' in a pipeline element produced an object that was not valid. It must result in a command name, a script block, or a CommandInfo object."
This indicates that $env:COMSPEC is not defined. In fact, echo $env:COMSPEC did not print anything. Of course, I did not intentionally erase it... perhaps.
The disappearance seems to be a common occurrence, as evidenced by reports of similar problems occurring in other projects (other 3rd party applications supposedly erasing it? I have not investigated further).
ref: ScoopInstaller/Scoop#3845
Anyway, $env:COMSPEC is just an environment variable, and since it can disappear or contain strange things, some people think it is wise to specify cmd.exe directly if we obviously know we will use it.
ref: ScoopInstaller/Scoop#4692
The text was updated successfully, but these errors were encountered:
In certain environments, this will be reproduced by running the installer as usual and launching Pico - Developer PowerShell.
Sorry for the Japanese UI, but it says "The expression after '&' in a pipeline element produced an object that was not valid. It must result in a command name, a script block, or a CommandInfo object."
This indicates that
$env:COMSPEC
is not defined. In fact,echo $env:COMSPEC
did not print anything. Of course, I did not intentionally erase it... perhaps.The disappearance seems to be a common occurrence, as evidenced by reports of similar problems occurring in other projects (other 3rd party applications supposedly erasing it? I have not investigated further).
ref: ScoopInstaller/Scoop#3845
Anyway,
$env:COMSPEC
is just an environment variable, and since it can disappear or contain strange things, some people think it is wise to specifycmd.exe
directly if we obviously know we will use it.ref: ScoopInstaller/Scoop#4692
The text was updated successfully, but these errors were encountered: