mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2025-03-27 21:37:05 +01:00
Provide return values
This commit is contained in:
parent
03e568ad81
commit
25ed84afb6
1 changed files with 2 additions and 1 deletions
|
@ -78,8 +78,9 @@ function ssh_fingerprint() {
|
||||||
local f
|
local f
|
||||||
for f in "${keyfiles[@]}"; do
|
for f in "${keyfiles[@]}"; do
|
||||||
if [[ $quiet != "-q" ]]; then printf "${ansi[1]}$f:${ansi[2]}\n"; fi
|
if [[ $quiet != "-q" ]]; then printf "${ansi[1]}$f:${ansi[2]}\n"; fi
|
||||||
ssh-keygen -l -E "$fptype" -f "$f"
|
if ! ssh-keygen -l -E "$fptype" -f "$f"; then return $?; fi
|
||||||
done
|
done
|
||||||
|
return 0
|
||||||
}
|
}
|
||||||
alias ssh_fp='ssh_fingerprint'
|
alias ssh_fp='ssh_fingerprint'
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue