Skip to content

Commit

Permalink
cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
mmastrac committed Nov 21, 2024
1 parent b1ed6e3 commit 9e86694
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
6 changes: 1 addition & 5 deletions src/branding.rs
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,4 @@ pub const BRANDING_USERNAME: &str = "edgedb";

/// The OS pathname for data files.
// TODO: Should this be "gel" as well?
pub const BRANDING_PATH: &str = if cfg!(windows) {
"EdgeDB"
} else {
"edgedb"
};
pub const BRANDING_PATH: &str = if cfg!(windows) { "EdgeDB" } else { "edgedb" };
2 changes: 1 addition & 1 deletion src/portable/windows.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ use once_cell::sync::{Lazy, OnceCell};
use url::Url;

use crate::async_util;
use crate::branding::{BRANDING, BRANDING_CLI, BRANDING_WSL, BRANDING_PATH};
use crate::branding::{BRANDING, BRANDING_CLI, BRANDING_PATH, BRANDING_WSL};
use crate::bug;
use crate::cli::env::Env;
use crate::cli::upgrade::{self, self_version};
Expand Down

0 comments on commit 9e86694

Please sign in to comment.