Skip to content

Commit 20c6ee2

Browse files
committed
Added empty bootstrap for testing recipes
1 parent 8d20800 commit 20c6ee2

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
from pythonforandroid.toolchain import Bootstrap, shprint, current_directory, info, warning, ArchAndroid, logger, info_main, which
2+
from os.path import join, exists
3+
from os import walk
4+
import glob
5+
import sh
6+
7+
class EmptyBootstrap(Bootstrap):
8+
name = 'empty'
9+
10+
recipe_depends = []
11+
12+
def run_distribute(self):
13+
print('empty bootstrap has no distribute')
14+
exit(1)
15+
16+
bootstrap = EmptyBootstrap()

0 commit comments

Comments
 (0)