Skip to content

Commit

Permalink
fix env check
Browse files Browse the repository at this point in the history
  • Loading branch information
SmartManoj committed Mar 1, 2025
1 parent dce4ec2 commit 031a34c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openhands/runtime/impl/docker/docker_runtime.py
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ def _init_container(self):
if (
self.config.workspace_mount_path
and self.config.workspace_mount_path_in_sandbox
and os.environ.get('APP_MODE') == 'oss'
and os.environ.get('APP_MODE') != 'sass'
):
# e.g. result would be: {"/home/user/openhands/workspace": {'bind': "/workspace", 'mode': 'rw'}}
volumes = {
Expand Down

0 comments on commit 031a34c

Please sign in to comment.