From 04726d21ef4acb46cd995eb21ad631632a09f6ff Mon Sep 17 00:00:00 2001 From: Christo Kotze Date: Mon, 19 Feb 2018 23:52:07 +0400 Subject: [PATCH] Changed path splitting to test Travis --- functions/utilities.zsh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/functions/utilities.zsh b/functions/utilities.zsh index a539fc6e..c59652f5 100644 --- a/functions/utilities.zsh +++ b/functions/utilities.zsh @@ -232,9 +232,9 @@ function truncatePath() { # 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='' - # split the path into an array using "/" as the delimiter and remove "~/" - local paths=(${(s:/:)${1}}) + [[ $1 == "~"* ]] && trunc_path='' || trunc_path='/' + # split the path into an array using "/" as the delimiter + local paths=(${(s:/:)1}) # declare locals for the directory being tested and its length local test_dir test_dir_length # do the needed truncation