mirror of
https://github.com/romkatv/powerlevel10k.git
synced 2024-11-17 18:20:07 +00:00
Changed path splitting to test Travis
This commit is contained in:
parent
4996e955e0
commit
04726d21ef
1 changed files with 3 additions and 3 deletions
|
@ -232,9 +232,9 @@ function truncatePath() {
|
||||||
# create a variable for the truncated path.
|
# create a variable for the truncated path.
|
||||||
local trunc_path
|
local trunc_path
|
||||||
# if the path is in the home folder, don't add a "/" to the start
|
# if the path is in the home folder, don't add a "/" to the start
|
||||||
[[ $1 != "~"* ]] && trunc_path='/' || trunc_path=''
|
[[ $1 == "~"* ]] && trunc_path='' || trunc_path='/'
|
||||||
# split the path into an array using "/" as the delimiter and remove "~/"
|
# 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
|
# declare locals for the directory being tested and its length
|
||||||
local test_dir test_dir_length
|
local test_dir test_dir_length
|
||||||
# do the needed truncation
|
# do the needed truncation
|
||||||
|
|
Loading…
Reference in a new issue