Skip to content
This repository is currently being migrated. It's locked while the migration is in progress.

bugfix to remove -i flag #23

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions examples/bash/login
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ curl -is "https://$SERVER.getsling.com/account/login" \
-d "{\"email\": \"$1\",\"password\": \"$2\"}" \
-H "Content-Type: application/json" \
-H "accept: */*" | \
grep -i "^authorization: " | \
sed "s/^authorization: //I"
grep "^authorization: " | \
sed "s/^authorization: //"