We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6cb5bfa commit e7b4d6eCopy full SHA for e7b4d6e
tmc-langs-util/src/error.rs
@@ -4,6 +4,7 @@ use std::path::PathBuf;
4
use thiserror::Error;
5
use tmc_langs_framework::error::FileIo;
6
7
+#[cfg(unix)]
8
use crate::task_executor::ModeBits;
9
10
#[derive(Debug, Error)]
tmc-langs-util/src/task_executor/course_refresher.rs
@@ -325,7 +325,7 @@ fn execute_zip(
325
}
326
327
#[cfg(not(unix))]
328
-fn set_permissions(path: &Path) -> Result<(), UtilError> {
+fn set_permissions(_path: &Path) -> Result<(), UtilError> {
329
// NOP on non-Unix platforms
330
Ok(())
331
0 commit comments