fengredrum/tiny-gif-converter

[WINDOWS]Some diffrent with macos and windows

AshaSalorina opened this issue · 1 comments

subprocess.call

For Windows, it must be use 'cmd.exe' as first arg, just like this:

subprocess.call(['mkdir', 'tmp/'])  =>  subprocess.call(['cmd.exe', 'mkdir', 'tmp/'])

Thx