From 6a1b55fe456de042dfcaaa2af576d9d9e35ead5a Mon Sep 17 00:00:00 2001 From: Ryan Pessa Date: Wed, 24 Sep 2014 11:06:19 -0500 Subject: [PATCH] make private service work (but only if there is no public folder) --- src/build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/build.py b/src/build.py index b9b224f157..cb8413c468 100755 --- a/src/build.py +++ b/src/build.py @@ -252,7 +252,7 @@ def make_package(args): # Figure out if application has service part service = False - directory = args.dir + directory = args.dir if public_version else args.private if directory: service_main = join(realpath(directory), 'service', 'main.py') if os.path.exists(service_main) or os.path.exists(service_main + 'o'):