Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

electron-forge-vscode-win.ps1 494B

12345678910111213141516
  1. #!/usr/bin/env pwsh
  2. $basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
  3. $exe=""
  4. if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
  5. # Fix case when both the Windows and Linux builds of Node
  6. # are installed in the same directory
  7. $exe=".exe"
  8. }
  9. # Support pipeline input
  10. if ($MyInvocation.ExpectingInput) {
  11. $input | & "$basedir/../@electron-forge/cli/script/vscode.cmd" $args
  12. } else {
  13. & "$basedir/../@electron-forge/cli/script/vscode.cmd" $args
  14. }
  15. exit $LASTEXITCODE