1
0
Fork 0
mirror of https://github.com/romkatv/powerlevel10k.git synced 2024-09-25 12:40:44 +00:00

Updated path splitting line

Works in the console, but Travis doesn't like it.
This commit is contained in:
Christo Kotze 2018-02-19 22:18:59 +04:00
parent a699393d58
commit 4996e955e0

View file

@ -234,7 +234,7 @@ function truncatePath() {
# if the path is in the home folder, don't add a "/" to the start
[[ $1 != "~"* ]] && trunc_path='/' || trunc_path=''
# split the path into an array using "/" as the delimiter and remove "~/"
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