diff --git a/packages/zsh/build.sh b/packages/zsh/build.sh index b5499e5965..b1c36f60c5 100644 --- a/packages/zsh/build.sh +++ b/packages/zsh/build.sh @@ -4,7 +4,7 @@ TERMUX_PKG_LICENSE="custom" TERMUX_PKG_LICENSE_FILE="LICENCE" TERMUX_PKG_MAINTAINER="Joshua Kahn @TomJo2000" TERMUX_PKG_VERSION=5.9 -TERMUX_PKG_REVISION=4 +TERMUX_PKG_REVISION=5 TERMUX_PKG_SRCURL="https://sourceforge.net/projects/zsh/files/zsh/$TERMUX_PKG_VERSION/zsh-$TERMUX_PKG_VERSION".tar.xz TERMUX_PKG_SHA256=9b8d1ecedd5b5e81fbf1918e876752a7dd948e05c1a0dba10ab863842d45acd5 # Remove hard link to bin/zsh as Android does not support hard links: diff --git a/packages/zsh/etc-zshrc b/packages/zsh/etc-zshrc index 1b4786aa10..356dd0d42a 100644 --- a/packages/zsh/etc-zshrc +++ b/packages/zsh/etc-zshrc @@ -3,10 +3,4 @@ command_not_found_handler() { @TERMUX_PREFIX@/libexec/termux/command-not-found $1 } PS1='%# ' -# If there is no .zshrc offer to set one up -# This is the same fresh install behavior as for example on Arch Linux -[[ -r "${ZDOTDIR:-$HOME}"/.zshrc ]] || { - autoload -U zsh-newuser-install - zsh-newuser-install -} # vim: set noet ft=zsh tw=4 sw=4 ff=unix