fixed empty unit bug
This commit is contained in:
parent
7958763bd4
commit
ad18c69f28
3 changed files with 5 additions and 5 deletions
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -138,7 +138,7 @@ checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8"
|
|||
|
||||
[[package]]
|
||||
name = "epitls-pi"
|
||||
version = "1.4.0"
|
||||
version = "1.4.1"
|
||||
dependencies = [
|
||||
"chrono",
|
||||
"clap",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "epitls-pi"
|
||||
version = "1.4.0"
|
||||
version = "1.4.1"
|
||||
edition = "2021"
|
||||
license = "GPL-3.0+"
|
||||
description = "A little helper tool meant to ease the developpment of the C piscine at EPITA/Toulouse."
|
||||
|
|
|
@ -42,9 +42,9 @@ impl CompileTask {
|
|||
}
|
||||
|
||||
pub fn run(self) -> Result<PathBuf, ExitStatus> {
|
||||
let proc_source = self.gen_source();
|
||||
let mut sources = self.files.clone();
|
||||
sources.push(proc_source);
|
||||
// let proc_source = self.gen_source();
|
||||
let sources = self.files.clone();
|
||||
// sources.push(proc_source);
|
||||
self.compile(sources)
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue