diff options
| author | diogo464 <[email protected]> | 2025-08-13 14:01:15 +0100 |
|---|---|---|
| committer | diogo464 <[email protected]> | 2025-08-13 14:01:15 +0100 |
| commit | a29a634bcb20cb9d61ea60f44b0243249b9c4b5d (patch) | |
| tree | 3845f78b41ddf1052045c1797356774af66bb818 /src/main.rs | |
| parent | db04a296a45ab23c154f665801f3e6d70ef305fa (diff) | |
cli: fixed import blob storage path problem
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs index 8f7723b..c258732 100644 --- a/src/main.rs +++ b/src/main.rs | |||
| @@ -1082,7 +1082,7 @@ fn cmd_import(args: ImportArgs) { | |||
| 1082 | 1082 | ||
| 1083 | let mut ops = common_read_log_file(&args.common); | 1083 | let mut ops = common_read_log_file(&args.common); |
| 1084 | 1084 | ||
| 1085 | let store = BlobStore::new("blobs"); | 1085 | let store = common_create_blob_store(&args.common); |
| 1086 | let timestamp = args.timestamp.unwrap_or_else(get_timestamp); | 1086 | let timestamp = args.timestamp.unwrap_or_else(get_timestamp); |
| 1087 | let root = args.path.canonicalize().unwrap(); | 1087 | let root = args.path.canonicalize().unwrap(); |
| 1088 | let import_mode = args.mode; | 1088 | let import_mode = args.mode; |
