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
Follow the instructions in the README
about capturing and sending logs.
Permissions to the pipe file were not set properly. Expected: 600 Actual: srw------- forfile: /tmp/CoreFxPipe_PSES_5528b497-d670-4c6d-8aa3-252f2210aaae
functionSet-NamedPipeMode {
param(
[Parameter(Mandatory=$true)]
[ValidateNotNullOrEmpty()]
[string]
$PipeFile
)
chmod $DEFAULT_USER_MODE$PipeFileif ($IsLinux) {
$mode= stat -c "%A"$PipeFile
}
else {
$mode= stat -f"%A"$PipeFile
}
if ($mode-ne$DEFAULT_USER_MODE) {
ExitWithError "Permissions to the pipe file were not set properly. Expected: $DEFAULT_USER_MODE Actual: $mode for file: $PipeFile"
}
}
command stat format error:
functionSet-NamedPipeMode {
param(
[Parameter(Mandatory=$true)]
[ValidateNotNullOrEmpty()]
[string]
$PipeFile
)
chmod $DEFAULT_USER_MODE$PipeFileif ($IsLinux) {
$mode= stat -c "%a"$PipeFile
}
else {
$mode= stat -f"%A"$PipeFile
}
if ($mode-ne$DEFAULT_USER_MODE) {
ExitWithError "Permissions to the pipe file were not set properly. Expected: $DEFAULT_USER_MODE Actual: $mode for file: $PipeFile"
}
}
System Details
$PSVersionTable
:Issue Description
I am experiencing a problem with...
Attached Logs
Follow the instructions in the README
about capturing and sending logs.
./modules/PowerShellEditorServices/Start-EditorServices.ps1:233:
command
stat
format error:https://github.com/PowerShell/PowerShellEditorServices/blob/master/module/PowerShellEditorServices/Start-EditorServices.ps1#L227
Rollback to 1.7 start ext success.
The text was updated successfully, but these errors were encountered: