Skip to content

Commit

Permalink
Fix OWASP_MASVS.yaml name (#702)
Browse files Browse the repository at this point in the history
* Fix OWASP_MASVS.yaml name
  • Loading branch information
cpholguera authored Apr 1, 2023
1 parent 7306b61 commit f0b1d91
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tools/generate_masvs_yaml.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,5 +76,5 @@ def get_masvs_dict():

masvs = get_masvs_dict()

with open("masvs.yaml", "w") as f:
with open("OWASP_MASVS.yaml", "w") as f:
yaml.dump(masvs, f, default_flow_style=False, sort_keys=False, allow_unicode=True, width=float("inf"))
2 changes: 1 addition & 1 deletion tools/populate_masvs_categories_md.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def yaml_to_md(input_file, for_website):

# get input arguments
parser = argparse.ArgumentParser()
parser.add_argument("-i", "--input", help="Input file", required=False, default="masvs.yaml")
parser.add_argument("-i", "--input", help="Input file", required=False, default="OWASP_MASVS.yaml")
parser.add_argument("-w", "--website", help="Generate for website", action='store_true', required=False, default=False)
args = parser.parse_args()

Expand Down

1 comment on commit f0b1d91

@Fawzyegiza2024
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.