Skip to content

Commit

Permalink
com -> org
Browse files Browse the repository at this point in the history
  • Loading branch information
leighmcculloch authored May 2, 2024
1 parent eecf3e3 commit a99b828
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/soroban-cli/src/commands/config/data.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ pub const XDG_DATA_HOME: &str = "XDG_DATA_HOME";
pub fn project_dir() -> Result<directories::ProjectDirs, Error> {
std::env::var(XDG_DATA_HOME)
.map_or_else(
|_| ProjectDirs::from("com", "stellar", "stellar-cli"),
|_| ProjectDirs::from("org", "stellar", "stellar-cli"),
|data_home| ProjectDirs::from_path(std::path::PathBuf::from(data_home)),
)
.ok_or(Error::FailedToFindProjectDirs)
Expand Down

0 comments on commit a99b828

Please sign in to comment.