mirror of
https://github.com/AikidoSec/safe-chain.git
synced 2026-05-26 12:10:49 +00:00
71 lines
1.7 KiB
Fish
71 lines
1.7 KiB
Fish
set -gx PATH $PATH $HOME/.safe-chain/bin
|
|
|
|
function npx
|
|
wrapSafeChainCommand "npx" $argv
|
|
end
|
|
|
|
function yarn
|
|
wrapSafeChainCommand "yarn" $argv
|
|
end
|
|
|
|
function pnpm
|
|
wrapSafeChainCommand "pnpm" $argv
|
|
end
|
|
|
|
function pnpx
|
|
wrapSafeChainCommand "pnpx" $argv
|
|
end
|
|
|
|
function bun
|
|
wrapSafeChainCommand "bun" $argv
|
|
end
|
|
|
|
function bunx
|
|
wrapSafeChainCommand "bunx" $argv
|
|
end
|
|
|
|
function npm
|
|
# If args is just -v or --version and nothing else, just run the `npm -v` command
|
|
# This is because nvm uses this to check the version of npm
|
|
set argc (count $argv)
|
|
if test $argc -eq 1
|
|
switch $argv[1]
|
|
case "-v" "--version"
|
|
command npm $argv
|
|
return
|
|
end
|
|
end
|
|
|
|
wrapSafeChainCommand "npm" $argv
|
|
end
|
|
|
|
function printSafeChainWarning
|
|
set original_cmd $argv[1]
|
|
|
|
# Fish equivalent of ANSI color codes: yellow background, black text for "Warning:"
|
|
set_color -b yellow black
|
|
printf "Warning:"
|
|
set_color normal
|
|
printf " safe-chain is not available to protect you from installing malware. %s will run without it.\n" $original_cmd
|
|
|
|
# Cyan text for the install command
|
|
printf "Install safe-chain by using "
|
|
set_color cyan
|
|
printf "npm install -g @aikidosec/safe-chain"
|
|
set_color normal
|
|
printf ".\n"
|
|
end
|
|
|
|
function wrapSafeChainCommand
|
|
set original_cmd $argv[1]
|
|
set cmd_args $argv[2..-1]
|
|
|
|
if type -q safe-chain
|
|
# If the safe-chain command is available, just run it with the provided arguments
|
|
safe-chain $original_cmd $cmd_args
|
|
else
|
|
# If the safe-chain command is not available, print a warning and run the original command
|
|
printSafeChainWarning $original_cmd
|
|
command $original_cmd $cmd_args
|
|
end
|
|
end
|