We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 766a8f6 + db9c2f8 commit b65f355Copy full SHA for b65f355
src/build.py
@@ -252,10 +252,10 @@ def make_package(args):
252
253
# Figure out if application has service part
254
service = False
255
- directory = args.private or args.dir
+ directory = args.dir
256
if directory:
257
service_main = join(realpath(directory), 'service', 'main.py')
258
- if os.path.exists(service_main):
+ if os.path.exists(service_main) or os.path.exists(service_main + 'o'):
259
service = True
260
261
# Check if OUYA support is enabled
0 commit comments