Unverified Commit 6e8dcdce authored by Armando Lüscher's avatar Armando Lüscher
Browse files

Satisfy shellcheck.

parent ce9fae82
...@@ -134,7 +134,7 @@ _cyon_print_header() { ...@@ -134,7 +134,7 @@ _cyon_print_header() {
} }
_cyon_get_cookie_header() { _cyon_get_cookie_header() {
printf "Cookie: %s" "$(cat "$HTTP_HEADER" | grep "cyon=" | grep "^Set-Cookie:" | _tail_n 1 | _egrep_o 'cyon=[^;]*;' | tr -d ';')" printf "Cookie: %s" "$(grep "cyon=" "$HTTP_HEADER" | grep "^Set-Cookie:" | _tail_n 1 | _egrep_o 'cyon=[^;]*;' | tr -d ';')"
} }
_cyon_login() { _cyon_login() {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment