File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
- ## Unreleased
1
+ ## v1.1.0 (2022-01-18)
2
2
3
+ * Added version to executable properties.
3
4
* Added ` --log-dir ` .
4
5
(Contributed by [ oscarbailey-tc] ( https://github.com/mtkennerly/shawl/pull/19 ) )
5
- * Added version to executable properties.
6
6
* Added ` --env ` .
7
7
* Added ` --path ` .
8
8
* When a custom ` --cwd ` is set, it is now automatically added to the command's
Original file line number Diff line number Diff line change @@ -60,14 +60,14 @@ struct CommonOpts {
60
60
no_log_cmd : bool ,
61
61
62
62
/// Write log file to a custom directory. This directory will be created if it doesn't exist.
63
- #[ structopt( long, parse( try_from_str = parse_ensured_directory) ) ]
63
+ #[ structopt( long, value_name = "path" , parse( try_from_str = parse_ensured_directory) ) ]
64
64
log_dir : Option < String > ,
65
65
66
66
/// Append the service start arguments to the command
67
67
#[ structopt( long) ]
68
68
pass_start_args : bool ,
69
69
70
- /// Additional environment variable (repeatable)
70
+ /// Additional environment variable in the format 'KEY=value' (repeatable)
71
71
#[ structopt( long, number_of_values = 1 , parse( try_from_str = parse_env_var) ) ]
72
72
env : Vec < ( String , String ) > ,
73
73
You can’t perform that action at this time.
0 commit comments