Skip to content

Commit 9c84d0a

Browse files
committed
update
1 parent b97a854 commit 9c84d0a

2 files changed

Lines changed: 6 additions & 0 deletions

File tree

oclp_r/application_entry.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,8 @@ def _generate_base_data(self) -> None:
137137

138138
arguments.arguments(self.constants)
139139

140+
141+
140142
def main():
141143
"""
142144
Main entry point

oclp_r/support/updates.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,10 @@ def check_binary_updates(self) -> Optional[dict]:
9292
# Special builds do not get updates through the updater
9393
return None
9494

95+
if self.constants.commit_info[0] == "Running from source":
96+
# Running from source, skip update check
97+
return None
98+
9599
if self.latest_details:
96100
# We already checked
97101
return self.latest_details

0 commit comments

Comments
 (0)