Skip to content

Commit 69edd28

Browse files
committed
Cuting our only the top two dirs from direpath
1 parent 75c9065 commit 69edd28

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ X=()
55

66
for word in "$@"; do
77
# echo $(dirname "$word")
8-
X+=$(dirname "$word")" "
8+
X+=$(dirname "$word " | cut -d "/" -f "1 2")" "
99
done
1010

1111
CHANGED=$(echo $X | tr ' ' '\n' | sort | uniq | xargs)
1212

1313
echo "Running tests on $CHANGED"
14-
shellspec $CHANGED
14+
#shellspec $CHANGED

0 commit comments

Comments
 (0)