~linaro-infrastructure/linaro-license-protection/master

« back to all changes in this revision

Viewing changes to license_protected_downloads/management/commands/s3_flatten.py

  • Committer: Kelley Spoon
  • Date: 2019-12-12 07:25:57 UTC
  • Revision ID: git-v1:38b6c3eec91f2221320a38b825a44d6f7d471d85
s3_flatten: fix prefix default

The default prefix was set to "snapshots/aarch64laptops" as part
of testing out the script.  Let's set that properly to "snapshots/"

Change-Id: I84521c4a43497a1911eb4df743a35d57e8062740
Reviewed-on: https://review.linaro.org/c/infrastructure/linaro-license-protection/+/33581
Reviewed-by: Kelley Spoon <kelley.spoon@linaro.org>

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
                            help='Number of days to mark files as deleted')
27
27
        parser.add_argument('--deletedays', default=180,
28
28
                            help='Number of days to delete files for good')
29
 
        parser.add_argument('--prefix', default='snapshots/aarch64laptops',
 
29
        parser.add_argument('--prefix', default='snapshots/',
30
30
                            help='Custom prefix path')
31
31
        parser.add_argument('-V', '--verbose', action='store_true',
32
32
                            help='log detailed information on actions to INFO')