We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b975fdf commit c96ffb2Copy full SHA for c96ffb2
build.py
@@ -172,6 +172,11 @@ def zip():
172
return zip_name
173
174
175
+def setup():
176
+ # Update the venv with any new updates
177
+ os.system("pip install -r requirements.txt")
178
+
179
180
if __name__ == '__main__':
181
apple_code_signing_key = None
182
if len(sys.argv) > 1:
@@ -180,4 +185,5 @@ def zip():
185
elif len(sys.argv) == 1 and platform.system() == 'Darwin':
186
input("Are you sure you don't wanna sign your code? ")
187
188
+ setup()
183
189
build(apple_code_signing_key)
0 commit comments