mirror of
https://github.com/raysan5/raylib.git
synced 2025-12-25 10:22:33 -05:00
Update examples collection
This commit is contained in:
19
emsdk-cache/emsdk-main/scripts/zip.py
Normal file
19
emsdk-cache/emsdk-main/scripts/zip.py
Normal file
@ -0,0 +1,19 @@
|
||||
import os
|
||||
|
||||
|
||||
def unzip_cmd():
|
||||
# Use 7-Zip if available (https://www.7-zip.org/)
|
||||
sevenzip = os.path.join(os.getenv('ProgramFiles', ''), '7-Zip', '7z.exe')
|
||||
if os.path.isfile(sevenzip):
|
||||
return [sevenzip, 'x']
|
||||
# Fall back to 'unzip' tool
|
||||
return ['unzip', '-q']
|
||||
|
||||
|
||||
def zip_cmd():
|
||||
# Use 7-Zip if available (https://www.7-zip.org/)
|
||||
sevenzip = os.path.join(os.getenv('ProgramFiles', ''), '7-Zip', '7z.exe')
|
||||
if os.path.isfile(sevenzip):
|
||||
return [sevenzip, 'a', '-mx9']
|
||||
# Fall back to 'zip' tool
|
||||
return ['zip', '-rq']
|
||||
Reference in New Issue
Block a user