We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d6f052a commit e5acb7cCopy full SHA for e5acb7c
1 file changed
build.py
@@ -1,6 +1,9 @@
1
# A simple script to build TimeKeeper and generate
2
# packages for different operating systems
3
#
4
+# USAGE:
5
+# python ./build.py [win/lin]
6
+#
7
# (C) 2025 Michail Krasnov <michail383krasnov@mail.ru>
8
9
#########################################################
@@ -103,7 +106,7 @@ def rmdir(self, dir: str):
103
106
sys.exit(1)
104
107
105
108
def build(self):
- subprocess.run("cargo build --release")
109
+ subprocess.run(["cargo", "build", "--release"])
110
111
def copy_files(self):
112
for file in INCLUDED_FILES:
0 commit comments