franciscolourenco / done

A fish-shell package to automatically receive notifications when long processes finish.
MIT License
766 stars 70 forks source link

Fix support for jq 1.6 #143

Closed sentinelt closed 7 months ago

sentinelt commented 7 months ago

Ubuntu still ships jq 1.6 which does not support '.[].tabs.[]' syntax. Support for this syntax was added later. In this PR we change this to '.[].tabs[]' which should work both in older and newer version of jq.

Here is some context about this issue in jq: https://github.com/jqlang/jq/issues/2517#issuecomment-1380754288

franciscolourenco commented 7 months ago

Thank you @sentinelt!