Skip to content

Commit 909e332

Browse files
authored
Fix Better error message in development when version number changes. (All-Hands-AI#4188)
1 parent 053e2f9 commit 909e332

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

openhands/runtime/utils/runtime_build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def _put_source_code_to_dir(temp_dir: str):
5757
raise RuntimeError(f'Image build failed:\n{result}')
5858

5959
if not os.path.exists(tarball_path):
60-
logger.error(f'Source distribution not found at {tarball_path}')
60+
logger.error(f'Source distribution not found at {tarball_path}. (Do you need to run `make build`?)')
6161
raise RuntimeError(f'Source distribution not found at {tarball_path}')
6262
logger.info(f'Source distribution created at {tarball_path}')
6363

0 commit comments

Comments
 (0)