kopia lustrzana https://github.com/inkstitch/inkstitch
fix fonts on windows
rodzic
6573b16795
commit
6c81429111
|
@ -21,6 +21,12 @@ for d in inx/*; do
|
|||
cp $d/*.inx dist
|
||||
|
||||
cd dist
|
||||
if [ "$BUILD" = "windows" ]; then
|
||||
# The python zipfile command line utility can't handle directories
|
||||
# containing files with UTF-8 names on Windows, so we use 7-zip instead.
|
||||
7z a ../artifacts/inkstitch-${VERSION}-${OS}-${lang}.zip *
|
||||
else
|
||||
python -m zipfile -c ../artifacts/inkstitch-${VERSION}-${OS}-${lang}.zip *
|
||||
fi
|
||||
cd ..
|
||||
done
|
||||
|
|
Ładowanie…
Reference in New Issue