Skip to content

Commit d7b30f8

Browse files
committed
update: *nix系统改为tar打包
1 parent b3a3f90 commit d7b30f8

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

main.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -162,19 +162,19 @@ def f(host, suffixName):
162162
temp, tempCn = f("i686-mingw32", "win-x64.zip")
163163
system.append(temp)
164164
systemCn.append(tempCn)
165-
temp, tempCn = f("x86_64-apple-darwin", "osx-x64.zip")
165+
temp, tempCn = f("x86_64-apple-darwin", "osx-x64.tar")
166166
system.append(temp)
167167
systemCn.append(tempCn)
168-
temp, tempCn = f("arm64-apple-darwin", "osx-arm64.zip")
168+
temp, tempCn = f("arm64-apple-darwin", "osx-arm64.tar")
169169
system.append(temp)
170170
systemCn.append(tempCn)
171-
temp, tempCn = f("arm-linux-gnueabihf", "linux-arm.zip")
171+
temp, tempCn = f("arm-linux-gnueabihf", "linux-arm.tar")
172172
system.append(temp)
173173
systemCn.append(tempCn)
174-
temp, tempCn = f("aarch64-linux-gnu", "linux-arm64.zip")
174+
temp, tempCn = f("aarch64-linux-gnu", "linux-arm64.tar")
175175
system.append(temp)
176176
systemCn.append(tempCn)
177-
temp, tempCn = f("x86_64-pc-linux-gnu", "linux-x64.zip")
177+
temp, tempCn = f("x86_64-pc-linux-gnu", "linux-x64.tar")
178178
system.append(temp)
179179
systemCn.append(tempCn)
180180

0 commit comments

Comments
 (0)