1
0
Fork 0
mirror of https://github.com/romkatv/powerlevel10k.git synced 2024-09-21 11:00:08 +00:00

Fixed typo - ~= instead of !=

This commit is contained in:
Christo Kotze 2018-02-23 09:56:42 +04:00
parent 99e62532bb
commit b723800b80

View file

@ -766,7 +766,7 @@ prompt_dir() {
for (( i=$POWERLEVEL9K_SHORTEN_DIR_LENGTH; i<$num; i++ )); do
paths[$i+1]=$POWERLEVEL9K_SHORTEN_DELIMITER
done
[[ $current_path ~= '~'* ]] && current_path="/" || current_path=""
[[ $current_path != '~'* ]] && current_path="/" || current_path=""
current_path+="${(j:/:)paths}"
fi
fi