Skip to content

Commit

Permalink
Fix in args for Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanhellander committed Mar 20, 2024
1 parent 005e152 commit 763b3bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fedn/fedn/utils/dispatcher.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def run_cmd(self, cmd_type):
shell = ['/bin/sh', '-c']
args = shell + [' '.join(cmd + args)]
else:
args = cmd.split(' ')+args
args = cmd[0].split(' ')+args

print(args)
run_process(args=args, cwd=self.project_dir)
Expand Down

0 comments on commit 763b3bb

Please sign in to comment.