mirror of
https://github.com/robbert-vdh/yabridge.git
synced 2026-05-10 04:30:12 +02:00
@@ -27,6 +27,8 @@ Versioning](https://semver.org/spec/v2.0.0.html).
|
|||||||
.so files as usual.
|
.so files as usual.
|
||||||
- Added a `--force` option to `yabridgectl sync` to always recreate existing .so
|
- Added a `--force` option to `yabridgectl sync` to always recreate existing .so
|
||||||
files like in previous versions.
|
files like in previous versions.
|
||||||
|
- Fixed a regression from yabridgectl 1.6.1 that prevented you from removing
|
||||||
|
directories that no longer exist using `yabridgectl rm`.
|
||||||
|
|
||||||
## [1.7.0] - 2020-10-13
|
## [1.7.0] - 2020-10-13
|
||||||
|
|
||||||
|
|||||||
@@ -139,12 +139,9 @@ fn main() -> Result<()> {
|
|||||||
.value_of_t_or_exit::<PathBuf>("path")
|
.value_of_t_or_exit::<PathBuf>("path")
|
||||||
.canonicalize()?,
|
.canonicalize()?,
|
||||||
),
|
),
|
||||||
("rm", Some(options)) => actions::remove_directory(
|
("rm", Some(options)) => {
|
||||||
&mut config,
|
actions::remove_directory(&mut config, &options.value_of_t_or_exit::<PathBuf>("path"))
|
||||||
&options
|
}
|
||||||
.value_of_t_or_exit::<PathBuf>("path")
|
|
||||||
.canonicalize()?,
|
|
||||||
),
|
|
||||||
("list", _) => actions::list_directories(&config),
|
("list", _) => actions::list_directories(&config),
|
||||||
("status", _) => actions::show_status(&config),
|
("status", _) => actions::show_status(&config),
|
||||||
("set", Some(options)) => actions::set_settings(
|
("set", Some(options)) => actions::set_settings(
|
||||||
|
|||||||
Reference in New Issue
Block a user