Skip to content

Commit c96ffb2

Browse files
committed
Updated build script to avoid dependency errors in the future
1 parent b975fdf commit c96ffb2

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

build.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,11 @@ def zip():
172172
return zip_name
173173

174174

175+
def setup():
176+
# Update the venv with any new updates
177+
os.system("pip install -r requirements.txt")
178+
179+
175180
if __name__ == '__main__':
176181
apple_code_signing_key = None
177182
if len(sys.argv) > 1:
@@ -180,4 +185,5 @@ def zip():
180185
elif len(sys.argv) == 1 and platform.system() == 'Darwin':
181186
input("Are you sure you don't wanna sign your code? ")
182187

188+
setup()
183189
build(apple_code_signing_key)

0 commit comments

Comments
 (0)