diff --git a/src/ui/modulo/mac.rs b/src/ui/modulo/mac.rs index db0e480..ca3f72f 100644 --- a/src/ui/modulo/mac.rs +++ b/src/ui/modulo/mac.rs @@ -4,7 +4,7 @@ use std::os::unix::fs::symlink; const MODULO_APP_BUNDLE_NAME: &str = "Modulo.app"; const MODULO_APP_BUNDLE_PLIST_CONTENT: &'static str = include_str!("../../res/mac/modulo.plist"); -const MODULO_APP_BUNDLE_ICON: &'static str = include_str!("../../res/mac/AppIcon.icns"); +const MODULO_APP_BUNDLE_ICON: &'static str = include_bytes!("../../res/mac/AppIcon.icns"); pub fn generate_modulo_app_bundle(modulo_path: &str) -> Result { let modulo_pathbuf = PathBuf::from(modulo_path);