Skip to content
Snippets Groups Projects
Select Git revision
  • 6ed647c3b5aa5b0217b37b22a8995f4da78ee6ac
  • master default
2 results

student_login_tab.xml

Blame
  • needle.ps1 490 B
    #!/usr/bin/env pwsh
    $basedir=Split-Path $MyInvocation.MyCommand.Definition -Parent
    
    $exe=""
    if ($PSVersionTable.PSVersion -lt "6.0" -or $IsWindows) {
      # Fix case when both the Windows and Linux builds of Node
      # are installed in the same directory
      $exe=".exe"
    }
    $ret=0
    if (Test-Path "$basedir/node$exe") {
      & "$basedir/node$exe"  "$basedir/../needle/bin/needle" $args
      $ret=$LASTEXITCODE
    } else {
      & "node$exe"  "$basedir/../needle/bin/needle" $args
      $ret=$LASTEXITCODE
    }
    exit $ret