Skip to content

Commit

Permalink
bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
takuma-yoneda committed Dec 29, 2023
1 parent 635a925 commit cf13c84
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lmn/cli/brun.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def handler(project: Project, machine: Machine, parsed: Namespace, preset: dict)
relative_workdir=runtime_options.rel_workdir,
startup=startup,
env=env,
dry_run=runtime_options.dry_run)
dry_run=parsed.dry_run)


name = 'brun'
Expand Down
2 changes: 1 addition & 1 deletion lmn/cli/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ def handler(project: Project, machine: Machine, parsed: Namespace, preset: dict)
runtime_options.name = _hash
logger.info(f'--contain flag is set.\n\tsetting the remote lmndir to {machine.lmndir}\n\tsetting jobs suffix to {_hash}')

_sync_code(project, machine, runtime_options.dry_run)
_sync_code(project, machine, parsed.dry_run)


# If parsed.mode is not set, try to read from the config file.
Expand Down

0 comments on commit cf13c84

Please sign in to comment.