File tree Expand file tree Collapse file tree 3 files changed +3
-0
lines changed Expand file tree Collapse file tree 3 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -41,6 +41,7 @@ pub enum Error {
41
41
InvalidImageVersion ,
42
42
}
43
43
44
+ /// This is the `boil build` command handler function.
44
45
pub fn run_command ( args : BuildArguments , config : Config ) -> Result < ( ) , Error > {
45
46
// TODO (@Techassi): Parse Dockerfile instead to build the target graph
46
47
// Validation
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ pub struct CompletionsArguments {
9
9
pub shell : Shell ,
10
10
}
11
11
12
+ /// This is the `boil completions` command handler function.
12
13
pub fn run_command ( arguments : CompletionsArguments ) {
13
14
let mut cli = Cli :: command ( ) ;
14
15
let bin_name = cli. get_bin_name ( ) . unwrap_or ( "boil" ) . to_owned ( ) ;
Original file line number Diff line number Diff line change @@ -43,6 +43,7 @@ impl Serialize for OneOrMany {
43
43
}
44
44
}
45
45
46
+ /// This is the `boil show images` command handler function.
46
47
pub fn run_command ( arguments : ShowImagesArguments ) -> Result < ( ) , Error > {
47
48
let list: BTreeMap < _ , _ > = if arguments. image . is_empty ( ) {
48
49
Targets :: all ( TargetsOptions { only_entry : true } )
You can’t perform that action at this time.
0 commit comments