lbry-android-sdk/p4a/pythonforandroid/bootstraps/empty/__init__.py
Akinwale Ariwodola 744cfaebc2 Initial commit
2017-08-13 02:24:00 +01:00

19 lines
372 B
Python

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()