We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 587eb94 commit 912e73eCopy full SHA for 912e73e
src/gitfetch/cli.py
@@ -68,7 +68,9 @@ def main() -> int:
68
latest = resp.json()["tag_name"].lstrip("v")
69
if latest != __version__:
70
print(
71
- f"\033[93mUpdate available: {latest}. Get it at https://github.com/Matars/gitfetch/releases/latest\033[0m")
+ f"\033[93mUpdate available: {latest}\n"
72
+ "Get it at: https://github.com/Matars/gitfetch/releases/latest\n"
73
+ "Or run: brew upgrade gitfetch\033[0m")
74
else:
75
print("You are using the latest version.")
76
0 commit comments