Copy config files around to prevent overwriting

This commit is contained in:
jude
2023-03-26 00:54:48 +00:00
parent 30fda2b0ee
commit a9a08e656f
4 changed files with 13 additions and 14 deletions

View File

@ -68,8 +68,8 @@ pub async fn register_application_commands(
#[tokio::main]
async fn main() -> Result<(), Box<dyn std::error::Error + Send + Sync>> {
if Path::new("/etc/soundfx-rs/default.env").exists() {
dotenv::from_path("/etc/soundfx-rs/default.env").unwrap();
if Path::new("/etc/soundfx-rs/config.env").exists() {
dotenv::from_path("/etc/soundfx-rs/config.env").unwrap();
}
env_logger::init();