Skip to content

Commit

Permalink
fix flake
Browse files Browse the repository at this point in the history
  • Loading branch information
rtbo committed Oct 7, 2023
1 parent 7307827 commit 8967cb4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mesonbuild/dependencies/dub.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,9 +138,9 @@ def __init__(self, name: str, environment: 'Environment', kwargs: T.Dict[str, T.
# A command that might be useful in case of missing DUB package
def dub_build_deep_command() -> str:
if self._dub_has_build_deep:
cmd = [ 'dub', 'build', '--deep' ]
cmd = ['dub', 'build', '--deep']
else:
cmd = [ 'dub', 'run', '--yes', 'dub-build-deep', '--' ]
cmd = ['dub', 'run', '--yes', 'dub-build-deep', '--']

return join_args(cmd + [
main_pack_spec,
Expand Down

0 comments on commit 8967cb4

Please sign in to comment.