Skip to content

Commit

Permalink
replace env! with include_str!
Browse files Browse the repository at this point in the history
  • Loading branch information
van-sprundel authored Sep 17, 2024
1 parent 297f4f6 commit 1a2c886
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/theme.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use std::path::{Path, PathBuf};
use log::{debug, info, warn};
use serde::Deserialize;

const DEFAULT_THEME_CONFIG: &str = env!("OUT_DIR");
const DEFAULT_THEME_CONFIG: &str = include_str!("../../themes/");

#[derive(Deserialize, Clone)]
pub struct ThemeConfig {
Expand Down

0 comments on commit 1a2c886

Please sign in to comment.