system-setup: inform server proc of output_base

This commit is contained in:
Dan Bungert 2022-03-18 12:01:33 -06:00
parent 96082252f7
commit e59078c74e
1 changed files with 1 additions and 0 deletions

View File

@ -85,6 +85,7 @@ def main():
sock_path = os.path.join(server_output_dir, 'socket') sock_path = os.path.join(server_output_dir, 'socket')
opts.socket = sock_path opts.socket = sock_path
server_args = ['--dry-run', '--socket=' + sock_path] + unknown server_args = ['--dry-run', '--socket=' + sock_path] + unknown
server_args += ['--output-base', opts.output_base]
elif opts.socket is None: elif opts.socket is None:
need_start_server = True need_start_server = True