fix(bash): remove temporary variable

This commit is contained in:
ange 2024-07-02 14:53:50 +02:00
parent 6f8c736db7
commit 72820b7b8f
Signed by: ange
GPG Key ID: 9E0C4157BB7BEB1D

View File

@ -1,4 +1,4 @@
[[ $- != *i* ]] && return
[[ "$-" != *i* ]] && return
set -o vi
@ -11,5 +11,6 @@ for f in "$HOME/.config/bash/"*.bash; do
# shellcheck disable=SC1090
. "$f"
done
unset f
stty werase undef