diff options
-rwxr-xr-x | build_tools/bin/mp.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/build_tools/bin/mp.py b/build_tools/bin/mp.py index c329335..b93e154 100755 --- a/build_tools/bin/mp.py +++ b/build_tools/bin/mp.py @@ -1,5 +1,5 @@ #!/usr/bin/env python2 -# Version 0.6.0 +# Version 0.6.2 import os import sys @@ -316,8 +316,8 @@ def config_file(): global PKGDEST # Check what file will be used for our PKGBUILD - if "--config" in cli_dict: - pkgfile = cli_dict["--config"] + if "-p" in cli_dict: + pkgfile = cli_dict["-p"] else: pkgfile = "PKGBUILD" print "Config File:",pkgfile |