We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
TZDIR
The TZDIR variable can be set to override the path to the time zone database, at least in glibc. See ogham/exa#856.
We should also merge the two places where we define the search dirs. Local/unix.rs:
Local/unix.rs
#[cfg(target_os = "aix")] const TZDB_LOCATION: &str = "/usr/share/lib/zoneinfo"; #[cfg(not(any(target_os = "android", target_os = "aix")))] const TZDB_LOCATION: &str = "/usr/share/zoneinfo";
And local/tz_info/timezone.rs:
local/tz_info/timezone.rs
#[cfg(unix)] const ZONE_INFO_DIRECTORIES: [&str; 4] = ["/usr/share/zoneinfo", "/share/zoneinfo", "/etc/zoneinfo", "/usr/share/lib/zoneinfo"];
The text was updated successfully, but these errors were encountered:
local::unix
Successfully merging a pull request may close this issue.
The
TZDIR
variable can be set to override the path to the time zone database, at least in glibc. See ogham/exa#856.We should also merge the two places where we define the search dirs.
Local/unix.rs
:And
local/tz_info/timezone.rs
:The text was updated successfully, but these errors were encountered: