Upgrade gnome shell extensions (fix #755) (#768)

This commit is contained in:
Roey Darwish Dror
2021-10-25 21:31:13 +03:00
committed by GitHub
parent fab8f1a9f1
commit b6c468c6fb
3 changed files with 24 additions and 0 deletions

View File

@@ -269,6 +269,9 @@ fn run() -> Result<()> {
runner.execute(Step::Tmux, "tmux", || tmux::run_tpm(&base_dirs, run_type))?;
runner.execute(Step::Tldr, "TLDR", || unix::run_tldr(run_type))?;
runner.execute(Step::Pearl, "pearl", || unix::run_pearl(run_type))?;
runner.execute(Step::GnomeShellExtensions, "Gnome Shell Extensions", || {
unix::upgrade_gnome_extensions(&ctx)
})?;
runner.execute(Step::Sdkman, "SDKMAN!", || {
unix::run_sdkman(&base_dirs, config.cleanup(), run_type)
})?;