Commit 04cfca25 authored by Chris Rebert's avatar Chris Rebert
Browse files

s3_cache.py: fix name in USAGE message

parent a77fba3c
Showing with 1 addition and 1 deletion
+1 -1
...@@ -83,7 +83,7 @@ if __name__ == '__main__': ...@@ -83,7 +83,7 @@ if __name__ == '__main__':
# AWS_SECRET_ACCESS_KEY -- AWS Secret Access Key # AWS_SECRET_ACCESS_KEY -- AWS Secret Access Key
argv.pop(0) argv.pop(0)
if len(argv) != 4: if len(argv) != 4:
raise SystemExit("USAGE: node_modules_cache.py <download | upload> <friendly name> <dependencies file> <directory>") raise SystemExit("USAGE: s3_cache.py <download | upload> <friendly name> <dependencies file> <directory>")
mode, friendly_name, dependencies_file, directory = argv mode, friendly_name, dependencies_file, directory = argv
conn = S3Connection() conn = S3Connection()
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment