termux-packages/packages/topgrade/src-main.rs.patch

12 lines
631 B
Diff

--- ./src/main.rs.orig 2022-04-14 13:08:45.484972466 +0530
+++ ./src/main.rs 2022-04-14 13:09:28.774972450 +0530
@@ -280,7 +280,7 @@
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))?;
- #[cfg(not(target_os = "macos"))]
+ #[cfg(not(any(target_os = "macos", target_os = "android")))]
runner.execute(Step::GnomeShellExtensions, "Gnome Shell Extensions", || {
unix::upgrade_gnome_extensions(&ctx)
})?;