Skip to content

Commit 995e915

Browse files
derimagiapaulirish
authored andcommitted
Swap uppercase/lowercase for ssh feature (#123)
1 parent d24f64d commit 995e915

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

git-open

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ function ssh_resolve() {
7070
# Host regex
7171
# HostName resolved.domain.com
7272
read -r -a ssh_array <<<"${ssh_line}"
73-
ssh_optcode="$(echo "${ssh_array[0]}" | tr '[:upper:]' '[:lower:]')"
73+
ssh_optcode="$(echo "${ssh_array[0]}" | tr '[:lower:]' '[:upper:]')"
7474
if [[ $ssh_optcode == HOST ]]; then
7575
# Host
7676
ssh_found=false

0 commit comments

Comments
 (0)