1
Fork 0

Unix is not the same as linux

This commit is contained in:
Joshua Goins 2022-10-11 21:23:39 -04:00
parent 58ca4c3736
commit 2cfb3108ea

View file

@ -33,7 +33,7 @@ fn launch_hydrus(config: &Config) {
let mut hydrus = Command::new(&config.hydrus_exec_location); let mut hydrus = Command::new(&config.hydrus_exec_location);
let hydrus = hydrus.args(["-d", &config.hydrus_db_location]); let hydrus = hydrus.args(["-d", &config.hydrus_db_location]);
if cfg!(unix) { if cfg!(linux) {
hydrus hydrus
.env("QT_QPA_PLATFORM", "xcb") .env("QT_QPA_PLATFORM", "xcb")
.status() .status()