webengine/osswebengine/WebKitTools/CygwinDownloader/make-zip.sh
author Mikko Sunikka <mikko.sunikka@nokia.com>
Fri, 06 Nov 2009 13:15:00 +0200
changeset 29 a758fa0cb043
parent 0 dd21522fd290
permissions -rw-r--r--
Revision: 200941 Kit: 200945

#!/bin/sh

PYTHONEXE=$(cygpath -u "${SYSTEMDRIVE}\\Python25\\python.exe")
ZIPNAME="cygwin-downloader.zip"

if [[ ! -f "${PYTHONEXE}" ]]; then
        echo "Couldn't find python.exe at ${PYTHONEXE}" 1>&2
        exit 1
fi

"${PYTHONEXE}" setup.py py2exe || {
        echo "Failed executing setup.py" 1>&2
        exit 1
}

rm -f "${ZIPNAME}"

cd dist

zip -r ../"${ZIPNAME}" * || {
        echo "Failed to create cygwin-downloader" 1>&2
        exit 1
}

cd ..

rm -rf build dist || {
        echo "Failed to cleanup cygwin-downloader and build directories" 1>&2
        exit 1
}