Skip to content

Commit

Permalink
Merge branch 'main' of https://github.com/thewh1teagle/vibe
Browse files Browse the repository at this point in the history
  • Loading branch information
thewh1teagle committed Jul 11, 2024
2 parents 0cf250c + 9421c0a commit 75a4674
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 12 deletions.
17 changes: 6 additions & 11 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,10 @@
],
"i18n-ally.pathMatcher": "{locale}/{namespace}.json",
"i18n-ally.tabStyle": "tab",
"rust-analyzer.runnables.extraEnv": [
{
"platform": "win32",
"env": {
"FFMPEG_DIR": "C:\\Users\\User\\Documents\\code\\vibe\\desktop\\src-tauri\\ffmpeg",
"OPENBLAS_PATH": "C:\\Users\\User\\Documents\\code\\vibe\\desktop\\src-tauri\\openblas",
"CLBlast_DIR": "C:\\Users\\User\\Documents\\code\\vibe\\desktop\\src-tauri\\clblast",
"LIBCLANG_PATH": "C:\\Program Files\\LLVM\\bin"
}
}
]
"rust-analyzer.cargo.extraEnv": {
"FFMPEG_DIR": "${workspaceFolder}\\desktop\\src-tauri\\ffmpeg",
"OPENBLAS_PATH": "${workspaceFolder}\\desktop\\src-tauri\\openblas",
"CLBlast_DIR": "${workspaceFolder}\\desktop\\src-tauri\\clblast",
"LIBCLANG_PATH": "C:\\Program Files\\LLVM\\bin"
},
}
2 changes: 1 addition & 1 deletion desktop/src-tauri/src/setup.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ pub fn setup(app: &App) -> Result<(), Box<dyn std::error::Error>> {
log::debug!(
"CPU Features\n{}",
crate::cmd::get_x86_features()
.map(|v| serde_json::to_string(&v)?)
.map(|v| serde_json::to_string(&v).unwrap_or_default())
.unwrap_or_default()
);

Expand Down

0 comments on commit 75a4674

Please sign in to comment.