mirror of
https://github.com/tealdeer-rs/tealdeer.git
synced 2026-08-26 10:04:17 +02:00
Rename project (#26)
* Change name to "tealdeer" * Rename repository as well * Add logo
This commit is contained in:
parent
542500f273
commit
6398f6594f
7 changed files with 76 additions and 14 deletions
|
|
@ -46,11 +46,11 @@ impl Cache {
|
|||
}
|
||||
};
|
||||
|
||||
// Otherwise, fall back to ~/.cache/tldr-rs
|
||||
// Otherwise, fall back to ~/.cache/tealdeer
|
||||
let home_dir = try!(env::home_dir().ok_or(
|
||||
CacheError("Could not determine home directory".into())
|
||||
));
|
||||
Ok(home_dir.join(".cache").join("tldr-rs"))
|
||||
Ok(home_dir.join(".cache").join("tealdeer"))
|
||||
}
|
||||
|
||||
/// Download the archive
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
//! An implementation of [tldr](https://github.com/tldr-pages/tldr) in Rust.
|
||||
//
|
||||
// Copyright (c) 2015-2016 tldr-rs developers
|
||||
// Copyright (c) 2015-2016 tealdeer developers
|
||||
//
|
||||
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
||||
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
||||
|
|
@ -54,7 +54,7 @@ use formatter::print_lines;
|
|||
use types::OsType;
|
||||
|
||||
|
||||
const NAME: &'static str = "tldr-rs";
|
||||
const NAME: &'static str = "tealdeer";
|
||||
const VERSION: &'static str = env!("CARGO_PKG_VERSION");
|
||||
const USAGE: &'static str = "
|
||||
Usage:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue