We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9200f3d commit 2fd993dCopy full SHA for 2fd993d
sigs-to-manifest.py
@@ -75,11 +75,13 @@ def main():
75
return 0
76
77
if args.merge_previous:
78
- notify(f"merging {len(previous.rows)} previous rows into current.")
+ # note, this is important for CSV manifests, but not for SQL manifests.
79
+ notify(f"merging previous rows into current.")
80
rows.extend(previous.rows)
81
82
m = CollectionManifest(rows)
- m.write_to_filename(args.output, database_format=args.database_format)
83
+ m.write_to_filename(args.output, database_format=args.database_format,
84
+ ok_if_exists=args.merge_previous)
85
86
notify(f"saved {len(m)} manifest rows to '{args.output}'")
87
0 commit comments