Skip to content

Commit

Permalink
Merge pull request #11 from newuser202201/master
Browse files Browse the repository at this point in the history
Master
  • Loading branch information
lucas-campagna authored Dec 21, 2022
2 parents e515adc + 5e09d9e commit 88c7bdc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mt5linux/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ def main():
port=args.port
host=args.host
#
Popen(['mkdir','-p',server_dir]).wait()
Popen(['mkdir','-p',server_dir],shell=True).wait()
__generate_server_classic(os.path.join(server_dir,server_code))
Popen([
wine_cmd,
Expand All @@ -168,7 +168,7 @@ def main():
host,
'-p',
str(port),
],
],shell=True,
).wait()


Expand Down

0 comments on commit 88c7bdc

Please sign in to comment.