Skip to content

Commit

Permalink
archive_assets: Require --token_filepath
Browse files Browse the repository at this point in the history
  • Loading branch information
rojer committed Sep 4, 2021
1 parent ce54e6a commit ccbc20b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/archive_assets.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
token = ""

parser = argparse.ArgumentParser(description="")
parser.add_argument("--token_filepath", type=str, default="/secrets/github/cesantabot/github_token")
parser.add_argument("--token_filepath", type=str, default=None, required=True)
parser.add_argument("--out_dir", type=str)
parser.add_argument("--parallelism", type=int, default=32)
parser.add_argument("--tag", type=str)
Expand Down

0 comments on commit ccbc20b

Please sign in to comment.