Skip to content

Commit

Permalink
fix(util): execute notify-run-completed as a background process
Browse files Browse the repository at this point in the history
Prevent the `gh run watch` screen from displaying when directly running:
$ gh fzf util notify-run-completed <run-id>
  • Loading branch information
benelan committed Jul 7, 2024
1 parent f743c80 commit 5a3469c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gh-fzf
Original file line number Diff line number Diff line change
Expand Up @@ -939,7 +939,7 @@ util_cmd() {

case $util in
copy-url) copy_url "$@" ;;
notify-run-completed) notify_run_completed "$@" ;;
notify-run-completed) notify_run_completed "$@" >/dev/null 2>&1 </dev/null & ;;
branch-prompt) branch_prompt "$@" ;;
develop-issue) develop_issue "$@" ;;
select-labels) select_labels "$@" ;;
Expand Down

0 comments on commit 5a3469c

Please sign in to comment.