Sha256: a1ea9a5ca306488a5b89d97bcc51e5294162580aad780e38ee5dd36e39b1026d
Contents?: true
Size: 797 Bytes
Versions: 6
Compression:
Stored size: 797 Bytes
Contents
#!/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") { # Support pipeline input if ($MyInvocation.ExpectingInput) { $input | & "$basedir/node$exe" "$basedir/../extract-zip/cli.js" $args } else { & "$basedir/node$exe" "$basedir/../extract-zip/cli.js" $args } $ret=$LASTEXITCODE } else { # Support pipeline input if ($MyInvocation.ExpectingInput) { $input | & "node$exe" "$basedir/../extract-zip/cli.js" $args } else { & "node$exe" "$basedir/../extract-zip/cli.js" $args } $ret=$LASTEXITCODE } exit $ret
Version data entries
6 entries across 6 versions & 1 rubygems