Forgot to serialize watchers
This commit is contained in:
parent
46e9223c05
commit
bb596216ec
1 changed files with 2 additions and 0 deletions
|
|
@ -1964,6 +1964,8 @@ def as_launch_command(self) -> list[str]:
|
|||
ans.append(f'--env={k}={v}')
|
||||
for cs in self.creation_spec.colors:
|
||||
ans.append(f'--color={cs}')
|
||||
for wr in self.creation_spec.watchers:
|
||||
ans.append(f'--watcher={wr}')
|
||||
for k, v in self.user_vars.items():
|
||||
ans.append(f'--var={k}={v}')
|
||||
ans.extend(self.padding.as_launch_args())
|
||||
|
|
|
|||
Loading…
Reference in a new issue