diff options
| author | Chris Rebert <[email protected]> | 2014-01-19 15:12:09 -0800 |
|---|---|---|
| committer | Chris Rebert <[email protected]> | 2014-01-19 15:12:09 -0800 |
| commit | 04cfca25afcbab01bc4c7003a4f075c89412e952 (patch) | |
| tree | ffee50743270093e2197b500e39432a94bf8c2af | |
| parent | a77fba3c37b4b471b98632c2300c2fea6a2f3571 (diff) | |
| download | bootstrap-04cfca25afcbab01bc4c7003a4f075c89412e952.tar.xz bootstrap-04cfca25afcbab01bc4c7003a4f075c89412e952.zip | |
s3_cache.py: fix name in USAGE message
| -rwxr-xr-x | test-infra/s3_cache.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test-infra/s3_cache.py b/test-infra/s3_cache.py index cf395e9d1..adc466e00 100755 --- a/test-infra/s3_cache.py +++ b/test-infra/s3_cache.py @@ -83,7 +83,7 @@ if __name__ == '__main__': # AWS_SECRET_ACCESS_KEY -- AWS Secret Access Key argv.pop(0) 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 conn = S3Connection() |
