Skip to content

Commit

Permalink
avoid checking for update in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
hubertdeng123 committed Dec 10, 2024
1 parent ade1b03 commit 1a81daa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion devservices/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def main() -> None:
else:
parser.print_help()

if args.command != "update":
if args.command != "update" and os.environ.get("CI") != "true":
newest_version = check_for_update()
if newest_version != current_version:
console.warning(
Expand Down

0 comments on commit 1a81daa

Please sign in to comment.