Skip to content
This repository has been archived by the owner on May 31, 2023. It is now read-only.

Commit

Permalink
typo
Browse files Browse the repository at this point in the history
  • Loading branch information
m-murphy committed Jul 26, 2017
1 parent 6c75bd9 commit 99b99a2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def build_win_server():
else:
os.system("pip install -q -r {}".format(os.path.join(SERVER_SRC_PATH, 'requirements.txt')))
os.system('pyinstaller -y --clean --distpath {} --workpath darwin-pybuild --log-level ERROR --hiddenimport email.mime.message {}'.format(
os.path.join(SERVER_BUILD_PATH, 'darwin'),
os.path.join(SERVER_BUILD_PATH, 'win32'),
os.path.join(SERVER_SRC_PATH, 'run.py')
)
)
Expand All @@ -70,7 +70,7 @@ def build_darwin_server():
def build_client():
if os.path.exists(CLIENT_BUILD_PATH):
shutil.rmtree(CLIENT_BUILD_PATH)
os.system("cd {} && webpack".format(CLIENT_SRC_PATH))
os.system("cd {} && yarn && webpack".format(CLIENT_SRC_PATH))
shutil.move(os.path.join(CLIENT_SRC_PATH, "app"), CLIENT_BUILD_PATH)


Expand Down

0 comments on commit 99b99a2

Please sign in to comment.