[📦 NEW] go get -u all (#262)

This commit is contained in:
Andrei Pavel
2019-11-20 14:41:05 +02:00
committed by Roey Darwish Dror
parent 4b495629c8
commit e5f7c74c84
3 changed files with 22 additions and 1 deletions

View File

@@ -355,6 +355,15 @@ fn run() -> Result<(), Error> {
)?;
}
if config.should_run(Step::Go) {
execute(
&mut report,
"Go",
|| generic::run_go(&base_dirs, run_type),
config.no_retry(),
)?;
}
if config.should_run(Step::Emacs) {
execute(&mut report, "Emacs", || emacs.upgrade(run_type), config.no_retry())?;
}