Browse Source

deploy-ng: Fix build_apps user options

Mitchell Stokes 8 years ago
parent
commit
a8d1e9444b
1 changed files with 2 additions and 2 deletions
  1. 2 2
      direct/src/showutil/dist.py

+ 2 - 2
direct/src/showutil/dist.py

@@ -25,8 +25,8 @@ if 'basestring' not in globals():
 class build_apps(distutils.core.Command):
     description = 'build Panda3D applications'
     user_options = [
-        ('build-base', None, 'directory to build applications in'),
-        ('requirements-path', None, 'path to requirements.txt file for pip'),
+        ('build-base=', None, 'directory to build applications in'),
+        ('requirements-path=', None, 'path to requirements.txt file for pip'),
     ]
 
     def initialize_options(self):