Home
last modified time | relevance | path

Searched refs:post_build (Results 1 – 3 of 3) sorted by relevance

/DADK/dadk-config/src/common/
H A Dtask.rs54 pub post_build: Option<PathBuf>, field
62 post_build: Option<PathBuf>, in new()
67 post_build, in new()
/DADK/dadk-config/templates/config/
H A Duserapp_config.toml50 post-build = "config/post_build.sh"
/DADK/dadk-user/src/executor/
H A Dmod.rs158 self.post_build()?; in do_execute()
223 fn post_build(&mut self) -> Result<(), ExecutorError> { in post_build() method
224 if let Some(post_build) = self.entity.task().build.post_build { in post_build()
225 let output = Command::new(post_build) in post_build()