We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 558998b commit 529011cCopy full SHA for 529011c
1 file changed
pre_commit_hooks/munki_makecatalogs.py
@@ -14,18 +14,16 @@ def build_argument_parser():
14
parser = argparse.ArgumentParser(
15
description=__doc__, formatter_class=argparse.RawDescriptionHelpFormatter
16
)
17
- parser.add_argument("--munki_repo", default='.',
18
- help="path to local munki repo defaults to '.'")
+ parser.add_argument(
+ "--munki_repo", default=".", help="Path to local Munki repo. (Defaults to '.')"
19
+ )
20
# TODO: Support makecatalogs options, ideally with kwargs for flexibility.
21
return parser
22
23
24
def main(argv=None):
25
"""Main process."""
26
- # Path to munki's python.
27
- python = "/usr/local/munki/munki-python"
28
-
29
# Path to makecatalogs.
30
makecatalogs = "/usr/local/munki/makecatalogs"
31
0 commit comments