mirror of
https://github.com/meilisearch/meilisearch.git
synced 2024-11-26 03:55:07 +08:00
chore: Improve the gitignore
This commit is contained in:
parent
c8aee7ed7a
commit
0680f8f4cd
6
.gitignore
vendored
6
.gitignore
vendored
@ -2,6 +2,6 @@
|
|||||||
/target
|
/target
|
||||||
/Cargo.lock
|
/Cargo.lock
|
||||||
**/*.rs.bk
|
**/*.rs.bk
|
||||||
**/*.idx
|
**/*.csv
|
||||||
**/*.map
|
**/*.json_lines
|
||||||
**/*.sst
|
**/*.rdb
|
||||||
|
@ -65,7 +65,7 @@ fn generate_update_from_csv(path: &Path) -> Result<(Schema, Update), Box<Error>>
|
|||||||
fn main() -> Result<(), Box<Error>> {
|
fn main() -> Result<(), Box<Error>> {
|
||||||
let command = Cmd::from_args();
|
let command = Cmd::from_args();
|
||||||
|
|
||||||
let path = random_name();
|
let path = random_name() + ".rdb";
|
||||||
|
|
||||||
println!("generating the update...");
|
println!("generating the update...");
|
||||||
let (schema, update) = generate_update_from_csv(&command.csv_file)?;
|
let (schema, update) = generate_update_from_csv(&command.csv_file)?;
|
||||||
|
Loading…
Reference in New Issue
Block a user