mirror of
https://github.com/ankitects/anki.git
synced 2025-09-19 06:22:22 -04:00
Fix/Add check_output_timestamps to PythonEnvironment (#4113)
* Fix/explicitly set restat
* Revert "Fix/explicitly set restat"
This reverts commit ace2e5ef6a
.
* add check_output_timestamps to python.rs
This commit is contained in:
parent
fdce765861
commit
e505ca032b
1 changed files with 4 additions and 0 deletions
|
@ -159,6 +159,10 @@ impl BuildAction for PythonEnvironment {
|
||||||
}
|
}
|
||||||
build.add_output_stamp(format!("{}/.stamp", self.venv_folder));
|
build.add_output_stamp(format!("{}/.stamp", self.venv_folder));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn check_output_timestamps(&self) -> bool {
|
||||||
|
true
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub struct PythonTypecheck {
|
pub struct PythonTypecheck {
|
||||||
|
|
Loading…
Reference in a new issue