aboutsummaryrefslogtreecommitdiff
path: root/build-scripts/repo_project_info.py
diff options
context:
space:
mode:
authorAndy Doan <andy.doan@linaro.org>2012-03-23 20:45:55 +0000
committerAndy Doan <andy.doan@linaro.org>2012-03-23 20:45:55 +0000
commite32babffd8940342b7647f4649a1cb19fbd35a4f (patch)
treed9e3b71b7ae003982bff455e21fd749cb6ecee4e /build-scripts/repo_project_info.py
parent693af1a3c75cbd0bfe7b02205c0e437d885b4e6c (diff)
require argument for repo project
Ensure the repo_project_info.py doesn't do anything automatic for you. The caller should be explicit in what project it wants
Diffstat (limited to 'build-scripts/repo_project_info.py')
-rwxr-xr-xbuild-scripts/repo_project_info.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/build-scripts/repo_project_info.py b/build-scripts/repo_project_info.py
index 4cba27a..185db55 100755
--- a/build-scripts/repo_project_info.py
+++ b/build-scripts/repo_project_info.py
@@ -15,7 +15,7 @@ def main():
p = argparse.ArgumentParser(description='looks at repo manifest to find the git repo and commit/branch the given project is based on')
p.add_argument('-d', dest='android_dir', required=True,
help='The Android source directory for the build')
- p.add_argument('-p', dest='proj_path', default="kernel",
+ p.add_argument('-p', dest='proj_path', required=True,
help='The project path to search for')
args = p.parse_args()