#!/usr/bin/env python try: from sugar.activity import bundlebuilder bundlebuilder.start("ImageQuiz") except ImportError: import os os.system("find ./ | sed 's,^./,ImageQuiz.activity/,g' > MANIFEST") os.chdir('..') os.system('zip -r ImageQuiz.xo ImageQuiz.activity') os.system('mv ImageQuiz.xo ./ImageQuiz.activity') os.chdir('ImageQuiz.activity')