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

Another change to test Travis

This commit is contained in:
Christo Kotze 2018-02-19 23:59:41 +04:00
parent 04726d21ef
commit f10a7daab0

View file

@ -231,10 +231,10 @@ function truncatePath() {
[[ -z $4 ]] && 4="right"
# create a variable for the truncated path.
local trunc_path
# if the path is in the home folder, don't add a "/" to the start
[[ $1 == "~"* ]] && trunc_path='' || trunc_path='/'
# if the path is in the home folder, add "~/" to the start otherwise "/"
[[ $1 == "~"* ]] && trunc_path='~/' || trunc_path='/'
# split the path into an array using "/" as the delimiter
local paths=(${(s:/:)1})
local paths=(${(s:/:)${1//"~\/"/}})
# declare locals for the directory being tested and its length
local test_dir test_dir_length
# do the needed truncation