From 4cbc7d73f8a97817581c580edbdef193ce481edc Mon Sep 17 00:00:00 2001 From: Sam Doran Date: Wed, 3 Jun 2026 11:39:24 -0400 Subject: [PATCH] Remove --install from fish-shell postinst The --install option was removed in 4.1.0 and now results in an error when trying to install fish. --- fish-shell/Makefile | 2 -- 1 file changed, 2 deletions(-) diff --git a/fish-shell/Makefile b/fish-shell/Makefile index 834bb3c..a6154e8 100644 --- a/fish-shell/Makefile +++ b/fish-shell/Makefile @@ -59,8 +59,6 @@ define Package/fish-shell/postinst #!/bin/sh grep -q 'fish' /opt/etc/shells || echo "/opt/bin/fish" >> /opt/etc/shells - -[ -d "/opt/share/fish" ] || fish --install -vn > /dev/null 2>&1 endef $(eval $(call BuildPackage,fish-shell))