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

Version Path
isomorfeus-puppetmaster-0.5.5 node_modules/.bin/extract-zip.ps1
isomorfeus-puppetmaster-0.5.4 node_modules/.bin/extract-zip.ps1
isomorfeus-puppetmaster-0.5.3 node_modules/.bin/extract-zip.ps1
isomorfeus-puppetmaster-0.5.2 node_modules/.bin/extract-zip.ps1
isomorfeus-puppetmaster-0.5.1 node_modules/.bin/extract-zip.ps1
isomorfeus-puppetmaster-0.5.0 node_modules/.bin/extract-zip.ps1