mirror of
https://github.com/zed-industries/zed.git
synced 2025-02-08 19:43:11 +00:00
Fix seed-db script by passing it the correct admin file path (#8022)
Release Notes: - N/A
This commit is contained in:
parent
f17d0b5729
commit
e27c2fc946
1 changed files with 2 additions and 2 deletions
|
@ -18,8 +18,8 @@ struct GitHubUser {
|
|||
async fn main() {
|
||||
load_dotenv().expect("failed to load .env.toml file");
|
||||
|
||||
let mut admin_logins =
|
||||
load_admins("./.admins.default.json").expect("failed to load default admins file");
|
||||
let mut admin_logins = load_admins("crates/collab/.admins.default.json")
|
||||
.expect("failed to load default admins file");
|
||||
if let Ok(other_admins) = load_admins("./.admins.json") {
|
||||
admin_logins.extend(other_admins);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue