Fix missing fisher seperator

This commit is contained in:
Roey Darwish Dror
2019-04-06 09:46:50 +03:00
parent 538f969d90
commit 936761efb6

View File

@@ -36,6 +36,8 @@ pub fn run_fisher(base_dirs: &BaseDirs, run_type: RunType) -> Result<(), Error>
.execute(&fish)
.args(&["-c", "fisher self-update"])
.check_run()?;
print_separator("Fisher");
run_type.execute(&fish).args(&["-c", "fisher"]).check_run()
}