set ~/.clinte.json to 644

This commit is contained in:
Benjamin Morrison 2021-10-24 02:14:45 -04:00
parent 06af54fd60
commit 91b0ee7aff
Signed by: gbmor
GPG Key ID: 8F192E4720BB0DAC
1 changed files with 3 additions and 1 deletions

View File

@ -1,7 +1,7 @@
use std::io;
#[cfg(not(test))]
use std::{env, fs};
use std::{env, fs, os::unix::fs::PermissionsExt};
use crate::conf;
use crate::db;
@ -130,6 +130,8 @@ pub fn display() -> error::Result<()> {
let homedir = env::var("HOME")?;
let localdest = format!("{}/.clinte.json", homedir);
fs::copy(db::PATH, localdest)?;
let mut perms = fs::metadata(&localdest)?.permissions();
perms.set_mode(0o644);
}
Ok(())