Commit 0f553bb7 authored by Bruno's avatar Bruno

Merge pull request #511 from ohspite/api-error-handling

Fix error handling when github API is unavailable.
parents d9295fa2 3a68bd0d
......@@ -19,12 +19,12 @@ function omf.remote --argument-names options -d 'List remote plugins and themes'
if echo $page_count | grep -vE '^[0-9]+$'
echo "Could not access Github API" >&2
exit 1
return 1
end
set repos ""
for i in (seq $page_count)
set answer (curl -s "$url?page=$i&per_page=100" | grep \"name\" | tr \": " " | awk '{print $2}')
set answer (curl -s "$url?page=$i&per_page=100" | grep '"name"' | tr '":' " " | awk '{print $2}')
set repos "$answer $repos"
end
......
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