lbry-android/p4a/pythonforandroid/bootstraps/empty/__init__.py

20 lines
372 B
Python
Raw Normal View History

2017-08-13 03:24:00 +02:00
from pythonforandroid.toolchain import Bootstrap
from os.path import join, exists
from os import walk
import glob
import sh
class EmptyBootstrap(Bootstrap):
name = 'empty'
recipe_depends = []
can_be_chosen_automatically = False
def run_distribute(self):
print('empty bootstrap has no distribute')
exit(1)
bootstrap = EmptyBootstrap()