We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 779f782 commit db9c2f8Copy full SHA for db9c2f8
src/build.py
@@ -237,10 +237,10 @@ def make_package(args):
237
238
# Figure out if application has service part
239
service = False
240
- directory = args.private or args.dir
+ directory = args.dir
241
if directory:
242
service_main = join(realpath(directory), 'service', 'main.py')
243
- if os.path.exists(service_main):
+ if os.path.exists(service_main) or os.path.exists(service_main + 'o'):
244
service = True
245
246
# Check if OUYA support is enabled
0 commit comments