Skip to content

Commit

Permalink
Update message
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreasArvidsson committed Dec 1, 2024
1 parent bacf1a9 commit feec31c
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions cursorless-talon/src/check_community_repo.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,11 @@ def on_ready():
if missing_actions:
errors.append(f"Missing actions: {', '.join(missing_actions)}")
if errors:
errors.insert(0, "https://github.com/talonhub/community")
message = "\n".join(errors)
app.notify("Cursorless missing community repository", body=message)
print("\n".join(errors))
app.notify(
"Cursorless missing community repository",
body="https://github.com/talonhub/community",
)


app.register("ready", on_ready)

0 comments on commit feec31c

Please sign in to comment.