File tree 3 files changed +8
-8
lines changed
3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 9
9
# # file distributed with this source code.
10
10
# #
11
11
12
+ sudo : false
12
13
language : bash
13
14
14
- addons :
15
- apt :
16
- packages :
17
- - realpath
15
+ git :
16
+ depth : 3
18
17
19
18
env :
20
19
- SHUNIT_COLOR=always
21
20
22
21
matrix :
22
+ fast_finish : true
23
23
include :
24
24
- script :
25
25
- bash test/bright-test.bash
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ readonly _BRIGHT_RELEASE_VERS="2.0.0"
23
23
#
24
24
25
25
readonly _BRIGHT_ROOT_PATH=" $( cd " $( dirname " $(
26
- realpath " ${BASH_SOURCE[0]} " 2> /dev/null
26
+ readlink -e " ${BASH_SOURCE[0]} " 2> /dev/null
27
27
) " 2> /dev/null) " & > /dev/null && pwd 2> /dev/null) "
28
28
29
29
Original file line number Diff line number Diff line change 19
19
# resolve test root directory path
20
20
#
21
21
22
- declare -r _TEST_ROOT_PATH=" $(
23
- dirname " $( realpath -m " ${BASH_SOURCE[0]} " 2> /dev/null ) " 2> /dev/null
24
- ) "
22
+ declare -r _TEST_ROOT_PATH=" $( cd " $( dirname " $(
23
+ readlink -e " ${BASH_SOURCE[0]} " 2> /dev/null
24
+ ) " 2> /dev/null ) " & > /dev/null && pwd 2> /dev/null ) "
25
25
26
26
27
27
#
You can’t perform that action at this time.
0 commit comments