mirror of
https://github.com/ScoopInstaller/Scoop.git
synced 2026-09-02 03:26:12 +00:00
13 lines
335 B
PowerShell
13 lines
335 B
PowerShell
#requires -v 3
|
|
param($cmd)
|
|
|
|
set-strictmode -off
|
|
|
|
. "$psscriptroot\..\lib\core.ps1"
|
|
. (relpath '..\lib\commands')
|
|
|
|
$commands = commands
|
|
|
|
if (@($null, '-h', '--help', '/?') -contains $cmd) { exec 'help' $args }
|
|
elseif ($commands -contains $cmd) { exec $cmd $args }
|
|
else { "scoop: '$cmd' isn't a scoop command. See 'scoop help'"; exit 1 } |