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 b97a854 commit 9c84d0aCopy full SHA for 9c84d0a
2 files changed
oclp_r/application_entry.py
@@ -137,6 +137,8 @@ def _generate_base_data(self) -> None:
137
138
arguments.arguments(self.constants)
139
140
+
141
142
def main():
143
"""
144
Main entry point
oclp_r/support/updates.py
@@ -92,6 +92,10 @@ def check_binary_updates(self) -> Optional[dict]:
92
# Special builds do not get updates through the updater
93
return None
94
95
+ if self.constants.commit_info[0] == "Running from source":
96
+ # Running from source, skip update check
97
+ return None
98
99
if self.latest_details:
100
# We already checked
101
return self.latest_details
0 commit comments