mirror of
https://github.com/ScoopInstaller/Scoop.git
synced 2026-05-14 05:32:54 +00:00
16 lines
352 B
PowerShell
16 lines
352 B
PowerShell
#requires -v 3
|
|
param($cmd)
|
|
|
|
set-strictmode -off
|
|
|
|
. "$psscriptroot\..\lib\core.ps1"
|
|
. (relpath '..\lib\commands')
|
|
|
|
reset_aliases
|
|
|
|
$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 }
|