����JFIF��x�x����'
Server IP : 78.140.185.180 / Your IP : 18.119.0.35 Web Server : LiteSpeed System : Linux cpanel13.v.fozzy.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64 User : builderbox ( 1072) PHP Version : 7.3.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /opt/alt/alt-nodejs18/root/lib/node_modules/corepack/shims/nodewin/ |
Upload File : |
#!/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/node_modules/corepack/dist/yarnpkg.js" $args } else { & "$basedir/node$exe" "$basedir/node_modules/corepack/dist/yarnpkg.js" $args } $ret=$LASTEXITCODE } else { # Support pipeline input if ($MyInvocation.ExpectingInput) { $input | & "node$exe" "$basedir/node_modules/corepack/dist/yarnpkg.js" $args } else { & "node$exe" "$basedir/node_modules/corepack/dist/yarnpkg.js" $args } $ret=$LASTEXITCODE } exit $ret